-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathstoryshots-axe.test.js
41 lines (35 loc) · 1.35 KB
/
storyshots-axe.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* @jest-environment jsdom
*/
import initStoryshots from '@storybook/addon-storyshots';
import { axe, toHaveNoViolations } from 'jest-axe';
import { render, waitFor } from '@testing-library/react';
jest.setTimeout(20000);
expect.extend(toHaveNoViolations);
initStoryshots({
suite: 'Storyshots accessibility tests',
configPath: 'demo/storybook',
test: async ({ story }) => {
const { container, queryAllByTestId } = render(story.render());
const patterns = queryAllByTestId('storybook-django');
if (patterns.length > 0) {
await waitFor(
() => {
const loaded = patterns.every((p) => p.dataset.state === 'loaded');
expect(loaded).toBe(true);
},
{ timeout: 20000 },
);
}
const results = await axe(container, {
// See https://github.com/dequelabs/axe-core/blob/develop/doc/rule-descriptions.md for a list of rules.
// Try to only disable rules if strictly needed, alternatively also consider excluding stories from those tests
// with the `storyshots` parameter: https://github.com/storybookjs/storybook/tree/master/addons/storyshots/storyshots-core#disable.
rules: {
// Disabled because stories are expected to be rendered outside of landmarks for testing.
region: { enabled: false },
},
});
expect(results).toHaveNoViolations();
},
});