Skip to content

Commit

Permalink
Remove the mocha-typescript custom ui from the watcher
Browse files Browse the repository at this point in the history
  • Loading branch information
PanayotCankov committed Feb 2, 2019
1 parent 8b1e508 commit 0477898
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 2 additions & 3 deletions test/it/WatcherPackageIT.ts
Expand Up @@ -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;
Expand Down
1 change: 0 additions & 1 deletion 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

0 comments on commit 0477898

Please sign in to comment.