Some checks are pending
Copilot Setup Steps / copilot-setup-steps (push) Waiting to run
Check Pre-Tokenizer Hashes / pre-tokenizer-hashes (push) Waiting to run
Python check requirements.txt / check-requirements (push) Waiting to run
Python Type-Check / python type-check (push) Waiting to run
Update Operations Documentation / update-ops-docs (push) Waiting to run
13 lines
389 B
TypeScript
13 lines
389 B
TypeScript
import * as a11yAddonAnnotations from '@storybook/addon-a11y/preview';
|
|
import { setProjectAnnotations } from '@storybook/sveltekit';
|
|
import * as previewAnnotations from './preview';
|
|
import { beforeAll } from 'vitest';
|
|
|
|
const project = setProjectAnnotations([a11yAddonAnnotations, previewAnnotations]);
|
|
|
|
beforeAll(async () => {
|
|
if (project.beforeAll) {
|
|
await project.beforeAll();
|
|
}
|
|
});
|