test(worker): add vitest harness

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-23 11:18:57 +02:00
co-authored by Claude Opus 4.8
parent 80aa2b0ee0
commit 8b443620c8
4 changed files with 1054 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "node",
include: ["src/**/*.test.ts"],
},
});