mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
27 lines
605 B
Plaintext
27 lines
605 B
Plaintext
```ts
|
|
// .storybook/test-runner.ts
|
|
|
|
import { injectAxe, checkA11y } from 'axe-playwright';
|
|
|
|
import type { TestRunnerConfig } from '@storybook/test-runner';
|
|
|
|
/*
|
|
* See https://storybook.js.org/docs/react/writing-tests/test-runner#test-hook-api-experimental
|
|
* to learn more about the test-runner hooks API.
|
|
*/
|
|
const a11yConfig: TestRunnerConfig = {
|
|
async preRender(page) {
|
|
await injectAxe(page);
|
|
},
|
|
async postRender(page) {
|
|
await checkA11y(page, '#root', {
|
|
detailedReport: true,
|
|
detailedReportOptions: {
|
|
html: true,
|
|
},
|
|
});
|
|
},
|
|
};
|
|
|
|
module.exports = a11yConfig;
|
|
``` |