mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
16 lines
510 B
TypeScript
16 lines
510 B
TypeScript
import React from 'react';
|
|
import { axe } from 'jest-axe';
|
|
import { render } from '@testing-library/react';
|
|
|
|
// eslint-disable-next-line jest/no-export
|
|
export default function accessibilityTest(Component: React.ComponentType) {
|
|
describe(`accessibility`, () => {
|
|
it(`component does not have any violations`, async () => {
|
|
jest.useRealTimers();
|
|
const { container } = render(<Component />);
|
|
const results = await axe(container);
|
|
expect(results).toHaveNoViolations();
|
|
});
|
|
});
|
|
}
|