import type { TestRunnerConfig } from '@storybook/test-runner'; import { getStoryContext } from '@storybook/test-runner'; import { injectAxe, checkA11y } from 'axe-playwright'; 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 checkA11y(page, '#storybook-root', { axeOptions: storyContext.parameters?.a11y?.config, detailedReport: true, detailedReportOptions: { html: true }, }); }, }; export default config;