mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 03:51:06 +08:00
17 lines
516 B
TypeScript
17 lines
516 B
TypeScript
import { defineConfig, mergeConfig } from 'vitest/config';
|
|
|
|
import { vitestCommonConfig } from '../../vitest.workspace';
|
|
|
|
export default defineConfig(
|
|
mergeConfig(vitestCommonConfig, {
|
|
plugins: [
|
|
import('@sveltejs/vite-plugin-svelte').then(({ svelte }) => svelte()),
|
|
// @ts-expect-error -- types don't match our TS module resolution setting
|
|
import('@testing-library/svelte/vite').then(({ svelteTesting }) => svelteTesting()),
|
|
],
|
|
test: {
|
|
environment: 'happy-dom',
|
|
},
|
|
})
|
|
);
|