Restructure source and tests

This commit is contained in:
Nick Alteen
2023-09-14 10:36:27 -04:00
parent 570107f4a0
commit ea09560a8d
12 changed files with 294 additions and 94 deletions

24
__tests__/wait.test.js Normal file
View File

@@ -0,0 +1,24 @@
/**
* Unit tests for src/wait.ts
*/
const { wait } = require('../src/wait')
const { expect } = require('@jest/globals')
describe('wait.ts', () => {
it('throws an invalid number', async () => {
const input = parseInt('foo', 10)
expect(isNaN(input)).toBe(true)
await expect(wait(input)).rejects.toThrow('milliseconds not a number')
})
it('waits with a valid number', async () => {
const start = new Date()
await wait(500)
const end = new Date()
const delta = Math.abs(end.getTime() - start.getTime())
expect(delta).toBeGreaterThan(450)
})
})