basic unit tests

This commit is contained in:
KS Jannette
2026-02-18 07:26:13 -05:00
parent 410ee0656f
commit a0e1b43360
8 changed files with 2012 additions and 6 deletions

8
vitest.config.ts Normal file
View File

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