qmd/vitest.config.ts
Tobi Lutke 870d3aed3b
test: move all tests to flat test/ directory
No more src/models/ and src/integration/ subfolders to forget about.
All 9 test files live in test/, one command runs everything:

  npx vitest run test/
  bun test test/
2026-02-15 21:37:47 -04:00

9 lines
156 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
testTimeout: 30000,
include: ["test/**/*.test.ts"],
},
});