mirror of
https://github.com/zhukunpenglinyutong/jetbrains-cc-gui.git
synced 2026-09-21 05:51:00 +08:00
11 lines
240 B
TypeScript
11 lines
240 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'happy-dom',
|
|
setupFiles: ['./vitest-setup.ts'],
|
|
include: ['src/**/*.test.ts', 'src/**/*.test.tsx'],
|
|
globals: true,
|
|
},
|
|
});
|