docbrown/app/javascript/listings/__tests__/ContactViaConnect.test.jsx
Katie Davis 76453b41fb
Updates ESLint rules to error on default imports (#12512)
* add rule

* add named imports

* more missed files

* so many files
2021-02-02 10:24:03 -05:00

38 lines
1.1 KiB
JavaScript

import { h } from 'preact';
import { render, fireEvent } from '@testing-library/preact';
import { axe } from 'jest-axe';
import { ContactViaConnect } from '../components/ContactViaConnect';
describe('<ContactViaConnect />', () => {
it('should have no a11y violations', async () => {
const onChange = jest.fn;
const { container } = render(
<ContactViaConnect onChange={onChange} checked />,
);
const results = await axe(container);
expect(results).toHaveNoViolations();
});
it('should render a checked check box opting in to open DMs', () => {
const onChange = jest.fn();
const { getByText } = render(
<ContactViaConnect onChange={onChange} checked />,
);
expect(getByText('Allow Users to message me via Connect.')).toBeDefined();
});
it('should fire a change event when clicking the checkbox', () => {
const onChange = jest.fn();
const { getByText } = render(
<ContactViaConnect onChange={onChange} checked />,
);
const checkbox = getByText('Allow Users to message me via Connect.');
fireEvent.click(checkbox);
expect(onChange).toHaveBeenCalledTimes(1);
});
});