summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/unpack-foreign-tarball.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/test/tap/unpack-foreign-tarball.js')
-rw-r--r--deps/npm/test/tap/unpack-foreign-tarball.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/deps/npm/test/tap/unpack-foreign-tarball.js b/deps/npm/test/tap/unpack-foreign-tarball.js
index d2e2e73c91..b998175b66 100644
--- a/deps/npm/test/tap/unpack-foreign-tarball.js
+++ b/deps/npm/test/tap/unpack-foreign-tarball.js
@@ -51,12 +51,18 @@ test("gitignore and npmignore", function (t) {
common.npm(["install", file], conf, verify.bind(null, t, ["foo", "bar"]))
})
-test("gitignore and npmignore, not gzipped", function (t) {
+test("gitignore and npmignore, not gzipped 1/2", function (t) {
setup()
var file = path.resolve(dir, "gitignore-and-npmignore.tar")
common.npm(["install", file], conf, verify.bind(null, t, ["foo", "bar"]))
})
+test("gitignore and npmignore, not gzipped 2/2", function (t) {
+ setup()
+ var file = path.resolve(dir, "gitignore-and-npmignore-2.tar")
+ common.npm(["install", file], conf, verify.bind(null, t, ["foo", "bar"]))
+})
+
test("clean", function (t) {
clean()
t.end()