From eabb75a9a8b1dcee2a8ff1dd89c6dfb2013ea45a Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Tue, 29 Sep 2020 15:29:45 +0000 Subject: [PATCH] fix(core): update --- ts/tstest.classes.tstest.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ts/tstest.classes.tstest.ts b/ts/tstest.classes.tstest.ts index decf1c2..4baa9d5 100644 --- a/ts/tstest.classes.tstest.ts +++ b/ts/tstest.classes.tstest.ts @@ -43,8 +43,12 @@ export class TsTest { tapCombinator.addTapParser(tapParserBrowser); break; case fileNameArg.endsWith('.both.ts'): + console.log('>>>>>>> TEST PART 1: chrome'); const tapParserBothBrowser = await this.runInChrome(fileNameArg); tapCombinator.addTapParser(tapParserBothBrowser); + console.log(cs(`|`.repeat(16), 'cyan')); + console.log(''); // force new line + console.log('>>>>>>> TEST PART 2: node'); const tapParserBothNode = await this.runInNode(fileNameArg); tapCombinator.addTapParser(tapParserBothBrowser); break;