🧪 test: Add unit tests

This commit is contained in:
2026-07-01 12:20:56 +07:00
parent 25cf1df334
commit f5a7bdc778
8 changed files with 723 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
include: ["tests/**/*.test.ts"],
environment: "node",
},
});