mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
15 lines
308 B
TypeScript
15 lines
308 B
TypeScript
import { defineConfig, mergeConfig } from 'vitest/config';
|
|
|
|
import { vitestCommonConfig } from '../../vitest.workspace';
|
|
|
|
export default mergeConfig(
|
|
vitestCommonConfig,
|
|
defineConfig({
|
|
// Add custom config here
|
|
test: {
|
|
globals: true,
|
|
setupFiles: ['src/test-setup.ts'],
|
|
},
|
|
})
|
|
);
|