chore: add Vitest scaffolding and sync package.json to v2.2.3

This commit is contained in:
Boovaragan
2026-06-08 17:58:58 +05:30
parent 8fd5c8c64e
commit 59b5eb0bd2
8 changed files with 1645 additions and 25 deletions

9
vitest.config.ts Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
include: ["tests-ts/**/*.test.ts"],
environment: "node",
reporters: ["verbose"],
},
});