From 018bc7054ade627054a93ad17f0885a032f98d41 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Thu, 11 Jun 2020 13:50:35 +0000 Subject: [PATCH] fix(core): update --- test/test.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test.ts b/test/test.ts index 14b1b37..e84afd3 100644 --- a/test/test.ts +++ b/test/test.ts @@ -40,4 +40,8 @@ tap.test('should create a log group', async () => { logGroup.log('info', 'this is logged from a log group'); }); +tap.test('should catch error', async () => { + console.error(new Error('hey')); +}); + tap.start();