From a12634ced30ed64c877613b70d1868ec7b389545 Mon Sep 17 00:00:00 2001 From: Yamboy1 Date: Thu, 14 Nov 2019 06:52:03 +1300 Subject: [PATCH 1/2] Small typo --- __tests__/main.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__tests__/main.test.ts b/__tests__/main.test.ts index 6f7475e..fd206d7 100644 --- a/__tests__/main.test.ts +++ b/__tests__/main.test.ts @@ -5,7 +5,7 @@ import * as path from 'path' test('throws invalid number', async() => { const input = parseInt('foo', 10); - await expect(wait(input)).rejects.toThrow('milleseconds not a number'); + await expect(wait(input)).rejects.toThrow('milliseconds not a number'); }); test('wait 500 ms', async() => { @@ -24,4 +24,4 @@ test('test runs', () => { env: process.env }; console.log(cp.execSync(`node ${ip}`, options).toString()); -}); \ No newline at end of file +}); From e109417d869b3d00034e3c13491e73053c3efcd2 Mon Sep 17 00:00:00 2001 From: Yamboy1 Date: Thu, 14 Nov 2019 06:55:53 +1300 Subject: [PATCH 2/2] Update typo in src --- src/wait.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wait.ts b/src/wait.ts index 9eff51f..cebe7b9 100644 --- a/src/wait.ts +++ b/src/wait.ts @@ -1,10 +1,10 @@ export function wait(milliseconds: number) { return new Promise((resolve) => { if (isNaN(milliseconds)) { - throw new Error('milleseconds not a number'); + throw new Error('milliseconds not a number'); } setTimeout(() => resolve("done!"), milliseconds) }); } - \ No newline at end of file +