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();