summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/noargs-install-config-save.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/test/tap/noargs-install-config-save.js')
-rw-r--r--deps/npm/test/tap/noargs-install-config-save.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/deps/npm/test/tap/noargs-install-config-save.js b/deps/npm/test/tap/noargs-install-config-save.js
index 15613d7a7..b6900b431 100644
--- a/deps/npm/test/tap/noargs-install-config-save.js
+++ b/deps/npm/test/tap/noargs-install-config-save.js
@@ -56,9 +56,8 @@ test("does not update the package.json with empty arguments", function (t) {
var child = createChild([npm, "install"])
child.on("close", function () {
var text = JSON.stringify(fs.readFileSync(pkg + "/package.json", "utf8"))
- t.ok(text.indexOf("\"dependencies") === -1)
s.close()
- t.end()
+ t.ok(text.indexOf("\"dependencies") === -1)
})
})
})
@@ -70,10 +69,9 @@ test("updates the package.json (adds dependencies) with an argument", function (
mr({port : common.port}, function (er, s) {
var child = createChild([npm, "install", "underscore"])
child.on("close", function () {
+ s.close()
var text = JSON.stringify(fs.readFileSync(pkg + "/package.json", "utf8"))
t.ok(text.indexOf("\"dependencies") !== -1)
- s.close()
- t.end()
})
})
})