mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:01:06 +08:00
24 lines
544 B
Plaintext
24 lines
544 B
Plaintext
```js
|
|
// MyComponent.test.js
|
|
|
|
import { render } from '@testing-library/react';
|
|
|
|
import { composeStories } from '@storybook/testing-react';
|
|
|
|
import { axe, toHaveNoViolations } from 'jest-axe';
|
|
|
|
import * as MyComponentStories from './MyComponent.stories';
|
|
|
|
const { Accessible } = composeStories(MyComponentStories);
|
|
|
|
expect.extend(toHaveNoViolations);
|
|
|
|
test('Example accessibility test', async () => {
|
|
const { container } = render(<Accessible />);
|
|
|
|
const AxeResults = await axe(container);
|
|
|
|
expect(AxeResults).toHaveNoViolations();
|
|
});
|
|
```
|