13 lines
320 B
TypeScript
13 lines
320 B
TypeScript
import { defineConfig, mergeConfig } from 'vitest/config';
|
|
import baseConfig from './vitest.config'; // On récupère ta config avec SWC
|
|
|
|
export default mergeConfig(
|
|
baseConfig,
|
|
defineConfig({
|
|
test: {
|
|
include: ['test/**/*.e2e-spec.ts'], // On cible tes tests E2E
|
|
environment: 'node',
|
|
},
|
|
}),
|
|
);
|