blob: fc569f5a0df88786561c919f8ef9b9c7ce2ac747 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'node',
include: ['test/**/*.test.ts'],
restoreMocks: true,
clearMocks: true,
},
});
|