Test CI with dummy unit test

This commit is contained in:
Jack Hadrill
2022-01-29 14:04:18 +00:00
parent f86515ab26
commit 4e10d6e62d
2 changed files with 8 additions and 0 deletions

5
tests/romulus-m.test.ts Normal file
View File

@@ -0,0 +1,5 @@
import { addNunbers } from '../src/romulus-m'
test('Adds two numbers together', () => {
expect(addNunbers(1, 3)).toBe(4)
})