mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Fixed tests
no issue
This commit is contained in:
parent
93a14eea2e
commit
e999bcd146
4 changed files with 5 additions and 9 deletions
|
@ -10,8 +10,8 @@ const setup = (overrides) => {
|
|||
const utils = render(
|
||||
<AccountHomePage data={{site, member: freeMember}} onAction={mockOnActionFn} switchPage={mockSwitchPageFn} />
|
||||
);
|
||||
const memberEmail = utils.getByText(member.email);
|
||||
const logoutButton = utils.queryByRole('button', {name: 'Logout'});
|
||||
const memberEmail = utils.getByText(freeMember.email);
|
||||
const logoutButton = utils.queryByRole('button', {name: 'Log out'});
|
||||
return {
|
||||
memberEmail,
|
||||
logoutButton,
|
||||
|
|
|
@ -8,7 +8,7 @@ describe('MagicLinkPage', () => {
|
|||
<MagicLinkPage />
|
||||
);
|
||||
|
||||
const inboxText = getByText(/check your inbox/i);
|
||||
const inboxText = getByText(/check your inbox!/i);
|
||||
|
||||
expect(inboxText).toBeInTheDocument();
|
||||
});
|
||||
|
|
|
@ -1,10 +1,6 @@
|
|||
const React = require('react');
|
||||
const PropTypes = require('prop-types');
|
||||
|
||||
const Styles = {
|
||||
|
||||
};
|
||||
|
||||
export default class SignupPage extends React.Component {
|
||||
static propTypes = {
|
||||
data: PropTypes.shape({
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import React from 'react';
|
||||
import {render, fireEvent} from '@testing-library/react';
|
||||
import SignupPage from './SignupPage';
|
||||
import {site} from '../test/fixtures/data';
|
||||
import {site} from '../../test/fixtures/data';
|
||||
|
||||
const setup = (overrides) => {
|
||||
const mockOnActionFn = jest.fn();
|
||||
|
@ -39,7 +39,7 @@ describe('SignupPage', () => {
|
|||
const {nameInput, emailInput, submitButton, mockOnActionFn} = setup();
|
||||
const nameVal = 'J Smith';
|
||||
const emailVal = 'jsmith@example.com';
|
||||
const planVal = 'Free';
|
||||
const planVal = 'FREE';
|
||||
|
||||
fireEvent.change(nameInput, {target: {value: nameVal}});
|
||||
fireEvent.change(emailInput, {target: {value: emailVal}});
|
||||
|
|
Loading…
Add table
Reference in a new issue