From 1ede0b476ac00abfbe3c4b2a1955cf20ed88021f Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Thu, 1 Oct 2020 13:30:29 +0000 Subject: [PATCH] fix(core): update --- ts/tstest.classes.tstest.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ts/tstest.classes.tstest.ts b/ts/tstest.classes.tstest.ts index 0b595d8..6abb8ea 100644 --- a/ts/tstest.classes.tstest.ts +++ b/ts/tstest.classes.tstest.ts @@ -38,6 +38,11 @@ export class TsTest { const tapCombinator = new TapCombinator(); // lets create the TapCombinator for (const fileNameArg of fileNamesToRun) { switch (true) { + case process.env.CI && fileNameArg.includes('.nonci.'): + console.log('!!!!!!!!!!!'); + console.log(`not running testfile ${fileNameArg}, sinc we are CI and file name includes '.nonci.' tag`); + console.log('!!!!!!!!!!!'); + break; case fileNameArg.endsWith('.browser.ts'): const tapParserBrowser = await this.runInChrome(fileNameArg); tapCombinator.addTapParser(tapParserBrowser);