Spaces:
Sleeping
Sleeping
File size: 194 Bytes
8219a27 | 1 2 3 4 5 6 7 8 9 10 11 | import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
root: './e2e',
environment: 'node',
include: ['**/*.e2e-spec.ts'],
},
});
|