This commit is contained in:
Chris Tate
2026-01-10 13:12:38 -06:00
parent 93374638eb
commit 0638bcdd3c
4 changed files with 387 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
include: ['src/**/*.test.ts'],
testTimeout: 30000,
},
});