From d460e7195851f6ba4949aacc26c9c7f681c71d41 Mon Sep 17 00:00:00 2001 From: Shannon Moeller Date: Wed, 12 Oct 2016 00:10:39 -0400 Subject: [PATCH] fix: corrected tests --- test/cronut.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cronut.js b/test/cronut.js index f885cbd..4eb35eb 100644 --- a/test/cronut.js +++ b/test/cronut.js @@ -11,7 +11,7 @@ test('should schedule a task', async t => { ); return new Promise(resolve => { - setTimeout(unschedule, 5000); - setTimeout(resolve, 10000); + setTimeout(unschedule, 5500); + setTimeout(resolve, 10500); }); });