mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 04:31:06 +08:00
14 lines
338 B
TypeScript
14 lines
338 B
TypeScript
import { defineConfig, mergeConfig } from 'vitest/config';
|
|
import { sep, posix } from 'path';
|
|
import { vitestCommonConfig } from '../../vitest.workspace';
|
|
|
|
export default mergeConfig(
|
|
vitestCommonConfig,
|
|
defineConfig({
|
|
test: {
|
|
environment: 'jsdom',
|
|
name: __dirname.split(sep).slice(-2).join(posix.sep),
|
|
},
|
|
})
|
|
);
|