mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
36 lines
875 B
TypeScript
36 lines
875 B
TypeScript
import type { TestRunnerConfig } from "@storybook/test-runner"
|
|
import { getStoryContext } from "@storybook/test-runner"
|
|
|
|
import { checkA11y, configureAxe, injectAxe } from "axe-playwright"
|
|
|
|
/*
|
|
* See https://storybook.js.org/docs/writing-tests/test-runner#test-hook-api
|
|
* to learn more about the test-runner hooks API.
|
|
*/
|
|
const config: TestRunnerConfig = {
|
|
async preVisit(page) {
|
|
await injectAxe(page)
|
|
},
|
|
async postVisit(page, context) {
|
|
const storyContext = await getStoryContext(page, context)
|
|
|
|
if (storyContext.parameters?.a11y?.disable) {
|
|
return
|
|
}
|
|
|
|
await configureAxe(page, {
|
|
rules: storyContext.parameters?.a11y?.config?.rules,
|
|
})
|
|
|
|
await checkA11y(page, "#storybook-root", {
|
|
verbose: false,
|
|
detailedReport: true,
|
|
detailedReportOptions: {
|
|
html: true,
|
|
},
|
|
})
|
|
},
|
|
}
|
|
|
|
export default config
|