From 8253b2ba56556bcff4f396464d39e07f25757775 Mon Sep 17 00:00:00 2001 From: Shannon Moeller Date: Fri, 14 Oct 2016 08:16:26 -0400 Subject: [PATCH] test: Added tick logging to test. --- test/cronut.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/cronut.js b/test/cronut.js index 5a52a00..fea6873 100644 --- a/test/cronut.js +++ b/test/cronut.js @@ -6,6 +6,7 @@ test('should schedule a task', async t => { const cron = cronut(); const removeTask = cron('*/1 * * * * *', () => { + t.pass('tick'); count += 1; });