You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
569 B

var fs = require("fs")
var test = require("tap").test
var rimraf = require("rimraf")
var npm = require("../../")
test("installing dependencies that having conflicting peerDependencies", function (t) {
t.plan(1)
rimraf.sync(__dirname + "/peer-deps-invalid/node_modules")
process.chdir(__dirname + "/peer-deps-invalid")
npm.load(function () {
npm.commands.install([], function (err) {
if (!err) {
t.fail("No error!")
process.exit(1)
return
}
t.equal(err.code, "EPEERINVALID")
process.exit(0)
})
})
})