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
+7
View File
@@ -0,0 +1,7 @@
import { describe, it, expect } from "vitest";
describe("harness", () => {
it("runs", () => {
expect(1 + 1).toBe(2);
});
});