Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBryan English <bryan@bryanenglish.com>2015-07-18 02:33:14 +0300
committerRebecca Turner <me@re-becca.org>2015-08-01 04:11:25 +0300
commit6e53c3dae3d245a44311ac3c50fb95ff688073b0 (patch)
treec5eb63911e306c34ad23ae25c6e81ca6a7ac3e61 /test
parenteb2c7aaeac779d7921370c75a8c3705384fc3195 (diff)
test: Use correct path for devDependency in --production test
PR-URL: https://github.com/npm/npm/pull/8985
Diffstat (limited to 'test')
-rw-r--r--test/tap/install-cli-production.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tap/install-cli-production.js b/test/tap/install-cli-production.js
index fbaf23afb..a1fdac6e8 100644
--- a/test/tap/install-cli-production.js
+++ b/test/tap/install-cli-production.js
@@ -47,9 +47,9 @@ test('setup', function (t) {
JSON.stringify(dependency, null, 2)
)
- mkdirp.sync(path.join(pkg, 'devDependency'))
+ mkdirp.sync(path.join(pkg, 'dev-dependency'))
fs.writeFileSync(
- path.join(pkg, 'devDependency', 'package.json'),
+ path.join(pkg, 'dev-dependency', 'package.json'),
JSON.stringify(devDependency, null, 2)
)