- 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
11 lines
242 B
TypeScript
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);
|
|
});
|
|
});
|