Initial commit
CI / check (push) Successful in 56s

This commit is contained in:
rudder
2026-08-12 14:02:25 +03:00
commit 3ab2d4a6cf
85 changed files with 10257 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'jsdom',
globals: true,
include: ['test/**/*.test.ts'],
// The prod e2e suite has its own config (vitest.e2e-prod.config.ts) and hits a real API.
exclude: ['**/node_modules/**', '**/dist/**', 'test/e2e-prod/**'],
setupFiles: [],
},
});