- 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
295 B
TypeScript
11 lines
295 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
|
|
describe('integration sanity', () => {
|
|
it('environment is reachable', () => {
|
|
expect(process.env.NODE_ENV).toBeDefined();
|
|
});
|
|
|
|
it('placeholder for future Baserow + Redis integration tests', () => {
|
|
expect(true).toBe(true);
|
|
});
|
|
});
|