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

8
vitest.config.evals.ts Normal file
View File

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