test: add client unit test coverage

This commit is contained in:
nav
2026-04-09 00:03:38 +00:00
parent 4322604f78
commit 824019168e
5 changed files with 1396 additions and 3 deletions

8
vitest.config.ts Normal file
View File

@@ -0,0 +1,8 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
environment: "node"
}
});