(cwd, args = [], options = {})
| 19 | * @returns {Promise<import("execa").Result>} child process |
| 20 | */ |
| 21 | const run = async (cwd, args = [], options = {}) => |
| 22 | testUtilsPkg.run(cwd, args, { |
| 23 | ...options, |
| 24 | executorPath: CLI_PATH, |
| 25 | }); |
| 26 | |
| 27 | /** |
| 28 | * Run the webpack CLI in watch mode for a test case. |
no test coverage detected