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
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/update.js')
-rw-r--r--test/lib/update.js16
1 files changed, 13 insertions, 3 deletions
diff --git a/test/lib/update.js b/test/lib/update.js
index 5396397d5..411d07592 100644
--- a/test/lib/update.js
+++ b/test/lib/update.js
@@ -37,7 +37,12 @@ t.test('no args', t => {
constructor (args) {
t.same(
args,
- { ...npm.flatOptions, path: npm.prefix, log: noop },
+ {
+ ...npm.flatOptions,
+ path: npm.prefix,
+ log: noop,
+ workspaces: null,
+ },
'should call arborist contructor with expected args'
)
}
@@ -71,7 +76,12 @@ t.test('with args', t => {
constructor (args) {
t.same(
args,
- { ...npm.flatOptions, path: npm.prefix, log: noop },
+ {
+ ...npm.flatOptions,
+ path: npm.prefix,
+ log: noop,
+ workspaces: null,
+ },
'should call arborist contructor with expected args'
)
}
@@ -139,7 +149,7 @@ t.test('update --global', t => {
const { path, ...opts } = args
t.same(
opts,
- { ...npm.flatOptions, log: noop },
+ { ...npm.flatOptions, log: noop, workspaces: undefined },
'should call arborist contructor with expected options'
)