major: Implement 3-tiered testing architecture

see [docs/testing.md](./docs/testing.md)
This commit is contained in:
2026-07-06 08:33:39 +05:30
parent 510cead5d9
commit 9e0325f909
6 changed files with 163 additions and 1 deletions

11
vitest.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
exclude: [
"**/node_modules/**",
"**/dist/**",
"tests/evals/**"
]
}
});