mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
* Enable Storybook test runner. Run a11y tests also * no need to return checkA11y function * add back decorator removed in error * add test runner to our ownership * add axe-playwright to our ownership
57 lines
1.3 KiB
TypeScript
57 lines
1.3 KiB
TypeScript
import { setCompodocJson } from "@storybook/addon-docs/angular";
|
|
import { withThemeByClassName } from "@storybook/addon-themes";
|
|
import { componentWrapperDecorator } from "@storybook/angular";
|
|
import type { Preview } from "@storybook/angular";
|
|
|
|
import docJson from "../documentation.json";
|
|
setCompodocJson(docJson);
|
|
|
|
const wrapperDecorator = componentWrapperDecorator((story) => {
|
|
return /*html*/ `
|
|
<div class="tw-bg-background tw-px-5 tw-py-10">
|
|
${story}
|
|
</div>
|
|
`;
|
|
});
|
|
|
|
const preview: Preview = {
|
|
decorators: [
|
|
withThemeByClassName({
|
|
themes: {
|
|
light: "theme_light",
|
|
dark: "theme_dark",
|
|
},
|
|
defaultTheme: "light",
|
|
}),
|
|
wrapperDecorator,
|
|
],
|
|
parameters: {
|
|
a11y: {
|
|
element: "#storybook-root",
|
|
manual: true,
|
|
options: {
|
|
runOnly: ["section508", "wcag2a", "wcag2aa", "wcag21a", "wcag21aa", "wcag22aa"],
|
|
},
|
|
},
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/,
|
|
},
|
|
},
|
|
options: {
|
|
storySort: {
|
|
method: "alphabetical",
|
|
order: ["Documentation", ["Introduction", "Colors", "Icons"], "Component Library"],
|
|
},
|
|
},
|
|
docs: { source: { type: "dynamic", excludeDecorators: true } },
|
|
backgrounds: {
|
|
disable: true,
|
|
},
|
|
},
|
|
tags: ["autodocs"],
|
|
};
|
|
|
|
export default preview;
|