(cond, ...args)
| 10 | /* eslint prefer-numeric-literals: "off" */ |
| 11 | |
| 12 | const skipIf = (cond, ...args) => { |
| 13 | if (cond) { |
| 14 | it.skip(...args); |
| 15 | } else { |
| 16 | it(...args); |
| 17 | } |
| 18 | }; |
| 19 | |
| 20 | // Run the cli with args as argv |
| 21 | const cli = (...args) => { |
no outgoing calls
no test coverage detected
searching dependent graphs…