From 0477898c87ab745ad7c861c7b124428d74137513 Mon Sep 17 00:00:00 2001 From: PanayotCankov Date: Fri, 18 Jan 2019 00:17:59 +0200 Subject: [PATCH] Remove the mocha-typescript custom ui from the watcher --- test/it/WatcherPackageIT.ts | 5 ++--- test/it/fixtures/packages/watcher/test/mocha.opts | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/test/it/WatcherPackageIT.ts b/test/it/WatcherPackageIT.ts index c0955d24..d5e3b14b 100644 --- a/test/it/WatcherPackageIT.ts +++ b/test/it/WatcherPackageIT.ts @@ -17,11 +17,10 @@ function assertStringContains(text: string, contains: string) { assert(text.includes(contains), "Expected '" + text + "' to includes '" + contains + "'."); } -console.log("process.platform: " + process.platform); -const isWin = process.platform === "win32"; +const isWin = process.platform == "win32"; // tslint:disable-line triple-equals -@skip(isWin) @suite(timeout(90000), slow(90000)) +@skip(isWin) class WatcherPackage extends AbstractPackageITBase { watch: ChildProcess; diff --git a/test/it/fixtures/packages/watcher/test/mocha.opts b/test/it/fixtures/packages/watcher/test/mocha.opts index 9163c6d1..d6b64441 100644 --- a/test/it/fixtures/packages/watcher/test/mocha.opts +++ b/test/it/fixtures/packages/watcher/test/mocha.opts @@ -1,5 +1,4 @@ --require ts-node/register --require source-map-support/register ---ui mocha-typescript -C test/*.ts