docbrown/app/javascript/onboarding/components/__tests__/EmailPreferencesForm.test.jsx
Rajat Talesra 54131cd94c
Move the digest email opt-in to the follow tags onboarding step (#20133)
* Removed intro slide and updated sequence

* Revert db change

* Initial save

* Design changes

* Mobile designs

* Added functionality

* Added tests

* Gradient effect added

* Added API call test
2023-09-20 17:55:29 +05:30

82 lines
2.3 KiB
JavaScript

import { h } from 'preact';
import { render } from '@testing-library/preact';
import fetch from 'jest-fetch-mock';
import { axe } from 'jest-axe';
import { EmailPreferencesForm } from '../EmailPreferencesForm';
global.fetch = fetch;
describe('EmailPreferencesForm', () => {
const renderEmailPreferencesForm = () =>
render(
<EmailPreferencesForm
next={jest.fn()}
prev={jest.fn()}
currentSlideIndex={4}
slidesCount={5}
communityConfig={{
communityName: 'Community Name',
communityLogo: '/x.png',
communityBackgroundColor: '#FFF000',
communityDescription: 'Some community description',
}}
previousLocation={null}
/>,
);
const getUserData = () =>
JSON.stringify({
followed_tag_names: ['javascript'],
profile_image_90: 'mock_url_link',
name: 'firstname lastname',
username: 'username',
});
beforeAll(() => {
document.head.innerHTML =
'<meta name="csrf-token" content="some-csrf-token" />';
document.body.setAttribute('data-user', getUserData());
});
it('should have no a11y violations', async () => {
const { container } = render(renderEmailPreferencesForm());
const results = await axe(container);
expect(results).toHaveNoViolations();
});
it('should load the appropriate text', () => {
const { queryByText } = renderEmailPreferencesForm();
expect(queryByText(/almost there!/i)).toExist();
expect(
queryByText(/review your email preferences before we continue./i),
).toExist();
expect(queryByText('Email preferences')).toExist();
});
it('should show the checkbox unchecked', () => {
const { queryByLabelText } = renderEmailPreferencesForm();
expect(queryByLabelText(/receive weekly newsletter/i).checked).toBe(false);
});
it('should render a stepper', () => {
const { queryByTestId } = renderEmailPreferencesForm();
expect(queryByTestId('stepper')).toExist();
});
it('should render a back button', () => {
const { queryByTestId } = renderEmailPreferencesForm();
expect(queryByTestId('back-button')).toExist();
});
it('should render a button that says Finish', () => {
const { queryByText } = renderEmailPreferencesForm();
expect(queryByText('Finish')).toExist();
});
});