diff --git a/spec/ci-spec.js b/spec/ci-spec.js index a5c18c9..2321647 100644 --- a/spec/ci-spec.js +++ b/spec/ci-spec.js @@ -105,10 +105,6 @@ describe("apm ci", function () { }) it("builds a native dependency correctly", function () { - if (process.platform === "win32") { - console.warn("Test skipped on windows") // TODO - return - } const moduleDirectory = path.join(temp.mkdirSync("apm-test-"), "test-module-with-native") wrench.copyDirSyncRecursive(path.join(__dirname, "fixtures", "test-module-with-lockfile"), moduleDirectory) process.chdir(moduleDirectory) diff --git a/spec/install-spec.js b/spec/install-spec.js index 05af05c..e09638b 100644 --- a/spec/install-spec.js +++ b/spec/install-spec.js @@ -408,10 +408,6 @@ describe("apm install", function () { describe("when --check is specified", () => it("compiles a sample native module", function () { - if (process.platform === "win32") { - console.warn("Test skipped on windows") // TODO - return - } const callback = jasmine.createSpy("callback") apm.run(["install", "--check"], callback)