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:
authornlf <quitlahok@gmail.com>2021-06-26 18:55:17 +0300
committerRuy Adorno <ruyadorno@hotmail.com>2021-07-15 20:43:57 +0300
commit98905ae3759165cd6d6f6306f31acc6a2baa4cde (patch)
tree06907aceb527886bbeee0a382e91376a1f0f7d27 /test/lib/config.js
parent801a52330636008fecadc812916c76fb945ce1f6 (diff)
feat(config): introduce 'location' parameter
PR-URL: https://github.com/npm/cli/pull/3471 Credit: @nlf Close: #3471 Reviewed-by: @wraithgar
Diffstat (limited to 'test/lib/config.js')
-rw-r--r--test/lib/config.js26
1 files changed, 13 insertions, 13 deletions
diff --git a/test/lib/config.js b/test/lib/config.js
index 6c0429313..8a1e7d85e 100644
--- a/test/lib/config.js
+++ b/test/lib/config.js
@@ -47,8 +47,8 @@ const defaults = {
const cliConfig = {
editor: 'vi',
json: false,
+ location: 'user',
long: false,
- global: false,
cat: true,
chai: true,
dog: true,
@@ -198,8 +198,8 @@ t.test('config list --json', t => {
{
editor: 'vi',
json: true,
+ location: 'user',
long: false,
- global: false,
cat: true,
chai: true,
dog: true,
@@ -265,7 +265,7 @@ t.test('config delete multiple key', t => {
})
})
-t.test('config delete key --global', t => {
+t.test('config delete key --location=global', t => {
t.plan(4)
npm.config.delete = (key, where) => {
@@ -277,13 +277,13 @@ t.test('config delete key --global', t => {
t.equal(where, 'global', 'should save global config post-delete')
}
- cliConfig.global = true
+ cliConfig.location = 'global'
config.exec(['delete', 'foo'], (err) => {
- t.error(err, 'npm config delete key --global')
+ t.error(err, 'npm config delete key --location=global')
})
t.teardown(() => {
- cliConfig.global = false
+ cliConfig.location = 'user'
delete npm.config.delete
delete npm.config.save
})
@@ -419,7 +419,7 @@ t.test('config set invalid key', t => {
})
})
-t.test('config set key --global', t => {
+t.test('config set key --location=global', t => {
t.plan(5)
npm.config.set = (key, val, where) => {
@@ -432,13 +432,13 @@ t.test('config set key --global', t => {
t.equal(where, 'global', 'should save global config')
}
- cliConfig.global = true
+ cliConfig.location = 'global'
config.exec(['set', 'foo', 'bar'], (err) => {
- t.error(err, 'npm config set key --global')
+ t.error(err, 'npm config set key --location=global')
})
t.teardown(() => {
- cliConfig.global = false
+ cliConfig.location = 'user'
delete npm.config.set
delete npm.config.save
})
@@ -583,10 +583,10 @@ sign-git-commit=true`
})
})
-t.test('config edit --global', t => {
+t.test('config edit --location=global', t => {
t.plan(6)
- cliConfig.global = true
+ cliConfig.location = 'global'
const npmrc = 'init.author.name=Foo'
npm.config.data.set('global', {
source: '/etc/npmrc',
@@ -626,7 +626,7 @@ t.test('config edit --global', t => {
})
t.teardown(() => {
- cliConfig.global = false
+ cliConfig.location = 'user'
npm.config.data.delete('user')
delete npm.config.save
})