add jest and babel for testing

This commit is contained in:
2023-02-28 16:04:09 +01:00
parent b0a40d0971
commit 373d21cf76
8 changed files with 4694 additions and 5 deletions
+7
View File
@@ -0,0 +1,7 @@
import { describe, expect, test } from '@jest/globals'
describe('integer module', () => {
test('3', () => {
expect(3).toBe(3)
})
})