(argv, expect)
| 315 | const { completion } = cache |
| 316 | |
| 317 | const testComp = (argv, expect) => { |
| 318 | return t.resolveMatch(completion({ conf: { argv: { remain: argv } } }), expect, argv.join(' ')) |
| 319 | } |
| 320 | |
| 321 | await Promise.all([ |
| 322 | testComp(['npm', 'cache'], ['add', 'clean', 'verify']), |
no test coverage detected