Skip to content

Commit d8d3c23

Browse files
author
Umutcan ÖNER
committed
test: add basic test file to api package
- Fixes test failures due to missing test files - Vitest was exiting with error when no tests found
1 parent b881b83 commit d8d3c23

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

apps/api/src/index.test.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { describe, it, expect } from 'vitest';
2+
3+
describe('API', () => {
4+
it('should pass basic test', () => {
5+
expect(true).toBe(true);
6+
});
7+
});

0 commit comments

Comments
 (0)