Wiki/bridge/tests/unit/sanity.test.ts
Corentin JOGUET 66ff9097a6 ops(ci): add vitest config + sanity tests stub
- bridge/vitest.config.ts : config + coverage v8 + passWithNoTests
- bridge/tests/unit/sanity.test.ts : stub (real tests Phase 2)
- bridge/tests/integration/sanity.test.ts : stub
- Remove tests/.gitkeep
2026-05-07 12:25:00 +02:00

11 lines
242 B
TypeScript

import { describe, expect, it } from 'vitest';
describe('sanity', () => {
it('node runtime is available', () => {
expect(process.version).toMatch(/^v\d+\./);
});
it('basic math works', () => {
expect(1 + 1).toBe(2);
});
});