Add Jest configuration and dummy test

This commit is contained in:
faris Aljohari
2024-07-08 15:28:04 +03:00
parent d094536fad
commit 2b8ba755b1
4 changed files with 37 additions and 27 deletions

5
src/dummy.spec.ts Normal file
View File

@ -0,0 +1,5 @@
describe('Dummy Test', () => {
it('should pass', () => {
expect(true).toBe(true);
});
});