a template starter repo for sveltekit projects
415 B
22 lines
1import type { Preview } from '@storybook/sveltekit';
2import '../src/app.css';
3
4const preview: Preview = {
5 parameters: {
6 controls: {
7 matchers: {
8 color: /(background|color)$/i,
9 date: /Date$/i
10 }
11 },
12
13 a11y: {
14 // 'todo' - show a11y violations in the test UI only
15 // 'error' - fail CI on a11y violations
16 // 'off' - skip a11y checks entirely
17 test: 'todo'
18 }
19 }
20};
21
22export default preview;