0
Fork 0
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:
Rish 2020-04-23 12:59:08 +05:30
parent 93a14eea2e
commit e999bcd146
4 changed files with 5 additions and 9 deletions

View file

@ -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,

View file

@ -8,7 +8,7 @@ describe('MagicLinkPage', () => {
<MagicLinkPage />
);
const inboxText = getByText(/check your inbox/i);
const inboxText = getByText(/check your inbox!/i);
expect(inboxText).toBeInTheDocument();
});

View file

@ -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({

View file

@ -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}});