fix(core): update

This commit is contained in:
2023-01-12 11:58:34 +01:00
parent e3be31bb93
commit 227931b0d3
13 changed files with 4427 additions and 27041 deletions

View File

@ -1,5 +1,5 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as logcontext from '../ts/index';
import * as logcontext from '../ts/index.js';
let testLogger = new logcontext.Logger('testNamespace');
@ -33,8 +33,8 @@ tap.testParallel('should create a new scope', async () => {
});
});
tap.test('should log within default scope', async (tools) => {
await tools.delayFor(3000);
tap.test('should log within default scope', async (toolsArg) => {
await toolsArg.delayFor(3000);
testLogger.log('message without context');
});