(error, commandName)
| 124 | |
| 125 | it('npm pack does not include unnecessary files', async function () { |
| 126 | let handleError = function (error, commandName) { |
| 127 | if (error.code === 'ENOENT') { |
| 128 | console.warn(chalk.yellow(` Your system does not provide ${commandName} -> Skipped this test.`)); |
| 129 | } else { |
| 130 | throw new Error(error); |
| 131 | } |
| 132 | }; |
| 133 | |
| 134 | try { |
| 135 | await npmPack(); |
no outgoing calls
no test coverage detected
searching dependent graphs…