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;