Setup jest config and added example test.

This commit is contained in:
2023-10-06 17:18:42 -04:00
parent 00ebe3afd9
commit a9b48a420f
6 changed files with 159 additions and 7 deletions

View File

@ -0,0 +1,7 @@
import {describe, expect, test} from '@jest/globals';
describe('sum module', () => {
test('adds 1 + 2 to equal 3', () => {
expect(1 + 2).toBe(3);
});
});