test(test): added in vitest to start doing more testing before deploying

This commit is contained in:
2026-06-01 14:21:19 -05:00
parent da87e2e1d3
commit e6b92aeb10
7 changed files with 1433 additions and 79 deletions

View File

@@ -3,6 +3,6 @@ import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
include: ["tests/**/*.test.ts"], // ← point to your tests folder
include: ["backend/**/*.test.ts"], // ← point to your tests folder
},
});