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:
authorKat Marchán <kzm@sykosomatic.org>2017-05-08 02:31:39 +0300
committerRebecca Turner <me@re-becca.org>2017-05-26 04:55:02 +0300
commit37f7e4c4bd3a3ce70ebda2b84b4e36f88e87d019 (patch)
tree56752fe95627b24642ef9f32da05191ec1dd241e /test
parent45fa23d29a84ec54d0551d808f617b7c64ad0f29 (diff)
test: no need to call shrinkwrap
Diffstat (limited to 'test')
-rw-r--r--test/need-npm5-update/install-shrinkwrapped-git.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/need-npm5-update/install-shrinkwrapped-git.js b/test/need-npm5-update/install-shrinkwrapped-git.js
index 34875ffb6..f697980de 100644
--- a/test/need-npm5-update/install-shrinkwrapped-git.js
+++ b/test/need-npm5-update/install-shrinkwrapped-git.js
@@ -50,12 +50,10 @@ test('shrinkwrapped git dependency got updated', function (t) {
chain([
// Install & shrinkwrap child package's first commit
[npm.commands.install, ['git://localhost:1234/child.git#' + refs[0]]],
- [npm.commands.shrinkwrap, []],
// Backup node_modules with the first commit
[fs.rename, parentNodeModulesPath, outdatedNodeModulesPath],
// Install & shrinkwrap child package's second commit
[npm.commands.install, ['git://localhost:1234/child.git#' + refs[1]]],
- [npm.commands.shrinkwrap, []],
// Restore node_modules with the first commit
[rimraf, parentNodeModulesPath],
[fs.rename, outdatedNodeModulesPath, parentNodeModulesPath],