From a12634ced30ed64c877613b70d1868ec7b389545 Mon Sep 17 00:00:00 2001 From: Yamboy1 Date: Thu, 14 Nov 2019 06:52:03 +1300 Subject: [PATCH] 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 +});