This commit is contained in:
2026-01-17 13:57:52 +08:00
parent 58fc5b8936
commit 3d8a17ff9a
8 changed files with 316 additions and 88 deletions

9
vitest.config.ts Normal file
View File

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