Skip to content

Commit bafc987

Browse files
committed
test: setup Jest configuration and add initial test
- Renamed jest.config.js to jest.config.cjs to fix ES modules compatibility - Added a basic test file to verify Jest setup
1 parent df6bdb4 commit bafc987

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed
File renamed without changes.

src/main.test.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
describe("Main module", () => {
2+
it("should pass a simple test", () => {
3+
expect(true).toBe(true);
4+
});
5+
});

0 commit comments

Comments
 (0)