mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
13 lines
320 B
TypeScript
13 lines
320 B
TypeScript
import { defineProject } from 'vitest/config';
|
|
import { sep, posix } from 'path';
|
|
// import { fileURLToPath } from 'url';
|
|
|
|
// const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
|
|
export default defineProject({
|
|
test: {
|
|
environment: 'jsdom',
|
|
name: __dirname.split(sep).slice(-2).join(posix.sep),
|
|
},
|
|
});
|