import { expect, tap } from '@pushrocks/tapbundle'; import * as logcontext from '../ts/index.js'; let testLogger = new logcontext.Logger('testNamespace'); tap.test('should log for .error()', async () => { testLogger.error('first error message'); }); tap.test('should log for .fatal()', async () => { testLogger.fatal('this is fatal'); }); // set up independent log context tap.testParallel('should create an async LogContext', async (tools) => { testLogger.scope(async () => { testLogger.logmap.addData('paramName1', { someData: 'someValue', }); await tools.delayFor(10).then(async () => { testLogger.log('hi'); testLogger.error('custom error message'); }); }); }); tap.testParallel('should create a new scope', async () => { testLogger.scope(async () => { testLogger.logmap.addData('id1', { someData: 'otherValue', }); testLogger.info('anything'); }); }); tap.test('should log within default scope', async (toolsArg) => { await toolsArg.delayFor(3000); testLogger.log('message without context'); }); tap.start();