17 lines
335 B
TypeScript
17 lines
335 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['src/test-helpers/**/*.e2e-spec.ts'],
|
|
globals: true,
|
|
environment: 'node',
|
|
testTimeout: 30000,
|
|
hookTimeout: 60000,
|
|
pool: 'forks',
|
|
poolOptions: {
|
|
forks: {
|
|
singleFork: true,
|
|
},
|
|
},
|
|
},
|
|
});
|