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.
 
 
 
 
 
 

45 lines
1.2 KiB

var common = require("../common-tap")
var path = require("path")
var test = require("tap").test
var rimraf = require("rimraf")
var npm = require("../../")
var mr = require("npm-registry-mock")
var pkg = path.resolve(__dirname, "peer-deps-invalid")
var cache = path.resolve(pkg, "cache")
var nodeModules = path.resolve(pkg, "node_modules")
test("installing dependencies that have conflicting peerDependencies", function (t) {
rimraf.sync(nodeModules)
rimraf.sync(cache)
process.chdir(pkg)
var customMocks = {
"get": {
"/ok.js": [200, path.join(pkg, "file-ok.js")],
"/invalid.js": [200, path.join(pkg, "file-fail.js")]
}
}
mr({port: common.port, mocks: customMocks}, function (err, s) { // create mock registry.
t.ifError(err, "mock registry started")
npm.load({
cache: cache,
registry: common.registry
}, function () {
npm.commands.install([], function (err) {
if (!err) {
t.fail("No error!")
} else {
t.equal(err.code, "EPEERINVALID")
}
t.end()
s.close() // shutdown mock registry.
})
})
})
})
test("cleanup", function (t) {
rimraf.sync(nodeModules)
rimraf.sync(cache)
t.end()
})