Skip to content

Commit 8c67c38

Browse files
committed
add tests for set command
PR-URL: #2354 Credit: @nlf Close: #2354 Reviewed-by: @ruyadorno
1 parent 996a2f6 commit 8c67c38

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

test/lib/set.js

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
const { test } = require('tap')
2+
const requireInject = require('require-inject')
3+
4+
let configArgs = null
5+
const npm = {
6+
commands: {
7+
config: (args, cb) => {
8+
configArgs = args
9+
return cb()
10+
},
11+
},
12+
}
13+
14+
const set = requireInject('../../lib/set.js', {
15+
'../../lib/npm.js': npm,
16+
})
17+
18+
test('npm set - no args', t => {
19+
return set([], (err) => {
20+
t.match(err, /npm set/, 'prints usage')
21+
t.end()
22+
})
23+
})
24+
25+
test('npm set', t => {
26+
return set(['email', 'me@me.me'], (err) => {
27+
if (err)
28+
throw err
29+
30+
t.strictSame(configArgs, ['set', 'email', 'me@me.me'], 'passed the correct arguments to config')
31+
t.end()
32+
})
33+
})

0 commit comments

Comments
 (0)