ci(app): testing and other app config changes

This commit is contained in:
2025-12-30 08:01:16 -06:00
parent 9efd6419b6
commit 9531401e56
10 changed files with 7252 additions and 82 deletions

8
vitest.config.ts Normal file
View File

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