smoke - reimplement logging

This commit is contained in:
Benjamin Pasero
2021-12-08 14:13:36 +01:00
parent 18e8272604
commit 64562e2a0e
8 changed files with 171 additions and 138 deletions

View File

@@ -58,8 +58,8 @@ export async function startApp(args: minimist.ParsedArgs, options: ApplicationOp
await app.start();
if (args.log && options.testTitle) {
app.logger.log('*** Test start:', options.testTitle);
if (options.testTitle) {
app.logger.log('Test start:', options.testTitle);
}
return app;