This commit is contained in:
Timi
2026-04-10 15:03:48 +08:00
parent cc3bade990
commit 26e533dc69
5 changed files with 1190 additions and 298 deletions

11
vitest.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
include: ["src/**/*.{test,spec}.ts"],
coverage: {
provider: "v8",
reporter: ["text", "html"]
}
}
});