1
0
Fork 0
Code Issues Pull requests Projects Releases Packages Wiki Activity Actions Pages

add vitest and regression tests for arc 1

This commit is contained in:
super-jalawii 2026-06-27 10:31:09 -04:00
parent 0074f0e10c
commit 9f538b1543
9 changed files with 1561 additions and 4 deletions

10
vitest.config.ts Normal file
View file

@ -0,0 +1,10 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "jsdom",
globals: true,
setupFiles: "./src/test/setup.ts",
include: ["src/**/*.test.ts", "src/**/*.test.tsx"],
},
});