Skip to content

Commit

Permalink
Log the platform, what is it on appveyor?
Browse files Browse the repository at this point in the history
  • Loading branch information
PanayotCankov committed Jan 17, 2019
1 parent 79dd372 commit 8b1e508
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/it/WatcherPackageIT.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { platform } from "os";
import { params, skip, slow, suite, timeout } from "../../index";
import { AbstractPackageITBase, PackageTestParams } from "./AbstractPackageITBase";

Expand All @@ -18,7 +17,8 @@ function assertStringContains(text: string, contains: string) {
assert(text.includes(contains), "Expected '" + text + "' to includes '" + contains + "'.");
}

const isWin = platform() === "win32";
console.log("process.platform: " + process.platform);
const isWin = process.platform === "win32";

@skip(isWin)
@suite(timeout(90000), slow(90000))
Expand Down

0 comments on commit 8b1e508

Please sign in to comment.