blob: 27c16355fa6412b8cf2f00bda72f09ac252d9251 (
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
|
const { test } = require('tap')
const prune = require('../../lib/prune.js')
const requireInject = require('require-inject')
test('should prune using Arborist', (t) => {
const prune = requireInject('../../lib/prune.js', {
'../../lib/npm.js': {
prefix: 'foo',
flatOptions: {
'foo': 'bar'
}
},
'@npmcli/arborist': function (args) {
t.ok(args, 'gets options object')
t.ok(args.path, 'gets path option')
this.prune = () => {
t.ok(true, 'prune is called')
}
},
'../../lib/utils/reify-output.js': (arb) => {
t.ok(arb, 'gets arborist tree')
}
})
prune(null, () => {
t.ok(true, 'callback is called')
t.end()
})
})
|