mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import { beforeAll, vi, expect as vitestExpect } from 'vitest';
|
|
|
|
import { setProjectAnnotations } from '@storybook/react';
|
|
|
|
import { userEvent as storybookEvent, expect as storybookExpect } from 'storybook/test';
|
|
|
|
import preview from './preview';
|
|
|
|
vi.spyOn(console, 'warn').mockImplementation((...args) => console.log(...args));
|
|
|
|
const annotations = setProjectAnnotations([
|
|
preview.composed,
|
|
{
|
|
// experiment with injecting Vitest's interactivity API over our userEvent while tests run in browser mode
|
|
// https://vitest.dev/guide/browser/interactivity-api.html
|
|
loaders: async (context) => {
|
|
// eslint-disable-next-line no-underscore-dangle
|
|
if (globalThis.__vitest_browser__) {
|
|
const vitest = await import('@vitest/browser/context');
|
|
const { userEvent: browserEvent } = vitest;
|
|
context.userEvent = browserEvent.setup();
|
|
context.expect = vitestExpect;
|
|
} else {
|
|
context.userEvent = storybookEvent.setup();
|
|
context.expect = storybookExpect;
|
|
}
|
|
},
|
|
},
|
|
]);
|
|
|
|
beforeAll(annotations.beforeAll);
|