20 lines
545 B
JavaScript
20 lines
545 B
JavaScript
import { h } from 'preact';
|
|
import { render } from '@testing-library/preact';
|
|
import { axe } from 'jest-axe';
|
|
import { Close } from '../Close';
|
|
|
|
describe('<Close />', () => {
|
|
it('should have no a11y violations', async () => {
|
|
const { container } = render(<Close />);
|
|
const results = await axe(container);
|
|
|
|
expect(results).toHaveNoViolations();
|
|
});
|
|
|
|
it('renders the close button', () => {
|
|
const { getByTitle } = render(<Close />);
|
|
const icon = getByTitle(/Close the editor/i);
|
|
|
|
expect(icon).toBeDefined();
|
|
});
|
|
});
|