Skip to content

Commit

Permalink
test: enable all native module tests for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Jun 26, 2022
1 parent 8afab95 commit 53cfd10
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions spec/ci-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 0 additions & 4 deletions spec/install-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 53cfd10

Please sign in to comment.