fix(core): update

This commit is contained in:
Philipp Kunz 2020-06-11 13:50:35 +00:00
parent 5ca4cb9964
commit 018bc7054a

View File

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