From 5b714919a0d0d911aa110c561014915c0bf16e65 Mon Sep 17 00:00:00 2001 From: Hendrik Date: Fri, 17 Apr 2026 15:02:08 +0200 Subject: [PATCH] test(infra): add vitest smoke test Co-Authored-By: Claude Opus 4.7 (1M context) --- tests/unit/smoke.test.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/unit/smoke.test.ts diff --git a/tests/unit/smoke.test.ts b/tests/unit/smoke.test.ts new file mode 100644 index 0000000..04b41f4 --- /dev/null +++ b/tests/unit/smoke.test.ts @@ -0,0 +1,7 @@ +import { describe, it, expect } from 'vitest'; + +describe('smoke', () => { + it('runs', () => { + expect(1 + 1).toBe(2); + }); +});