1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
var test = require("tap").test
var npm = require("../../")
var path = require("path")
var fs = require("fs")
var rimraf = require("rimraf")
var pkg = path.join(__dirname, "install-from-local", "package-with-local-paths")
test("setup", function (t) {
process.chdir(pkg)
t.end()
})
test('"npm install" should install local packages', function (t) {
npm.load({loglevel : "silent"}, function () {
npm.commands.install(["."], function (err) {
t.ifError(err, "local packages installed")
var dependencyPackageJson = path.resolve(pkg, "node_modules/package-local-dependency/package.json")
t.ok(
JSON.parse(fs.readFileSync(dependencyPackageJson, "utf8")),
"package with local dependency installed"
)
var devDependencyPackageJson = path.resolve(pkg, "node_modules/package-local-dev-dependency/package.json")
t.ok(
JSON.parse(fs.readFileSync(devDependencyPackageJson, "utf8")),
"package with local dev dependency installed"
)
t.end()
})
})
})
test("cleanup", function (t) {
process.chdir(__dirname)
rimraf.sync(path.resolve(pkg, "node_modules"))
t.end()
})
|