fix(core): update

This commit is contained in:
2020-06-08 20:39:40 +00:00
parent 5a475260dd
commit 2cc3e6c906
3 changed files with 33 additions and 2 deletions

View File

@ -35,4 +35,9 @@ tap.test('should be able to log things', async () => {
testSmartLog.log('silly', 'hi');
});
tap.test('should create a log group', async () => {
const logGroup = testSmartLog.createLogGroup('some cool transaction');
logGroup.log('info', 'this is logged from a log group');
})
tap.start();