Files
kochwas/tests/unit/smoke.test.ts
Hendrik 5b714919a0 test(infra): add vitest smoke test
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-17 15:02:08 +02:00

8 lines
132 B
TypeScript

import { describe, it, expect } from 'vitest';
describe('smoke', () => {
it('runs', () => {
expect(1 + 1).toBe(2);
});
});