summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/shrinkwrap-version-match.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/test/tap/shrinkwrap-version-match.js')
-rw-r--r--deps/npm/test/tap/shrinkwrap-version-match.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/deps/npm/test/tap/shrinkwrap-version-match.js b/deps/npm/test/tap/shrinkwrap-version-match.js
index 7d9fed729a..bdcff2e4b6 100644
--- a/deps/npm/test/tap/shrinkwrap-version-match.js
+++ b/deps/npm/test/tap/shrinkwrap-version-match.js
@@ -7,6 +7,10 @@ var fs = require('fs')
var path = require('path')
var common = require('../common-tap.js')
+// NOTE: This test will only remain relavent until npm@5 when
+// npm-shrinkwrap.json will override EVERYTHING in you package.json.
+// If you're working on npm@5 and this broke, just remove the test.
+
var testdir = path.resolve(__dirname, path.basename(__filename, '.js'))
var modAdir = path.resolve(testdir, 'modA')
var modB1dir = path.resolve(testdir, 'modB@1')
@@ -16,7 +20,9 @@ var modCdir = path.resolve(testdir, 'modC')
var fixture = new Tacks(Dir({
'package.json': File({
dependencies: {
- modA: 'file://' + modAdir,
+ modA: 'file://' + modAdir
+ },
+ devDependencies: {
modC: 'file://' + modCdir
}
}),