blob: c39d4338120d462b69d375bf0a46c33218fa2a65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
const t = require('tap')
t.test('ll', t => {
t.plan(3)
class LS {
constructor (npm) {
this.npm = npm
}
async exec (args) {
t.same(args, ['pkg'], 'should forward args')
}
}
const LL = t.mock('../../../lib/commands/ll.js', {
'../../../lib/commands/ls.js': LS,
})
const ll = new LL({
config: {
set: (key, value) => {
t.equal(key, 'long', 'should set long config value')
t.equal(value, true, 'should set a truthy value')
},
},
})
ll.exec(['pkg'], err => {
if (err) {
throw err
}
})
})
|