(cwd, args = [], options = {})
| 64 | * @returns {Promise<import("execa").Result>} child process |
| 65 | */ |
| 66 | const run = async (cwd, args = [], options = {}) => { |
| 67 | const execa = await import("execa"); |
| 68 | return createProcess(execa, cwd, args, options); |
| 69 | }; |
| 70 | |
| 71 | /** |
| 72 | * Run the webpack CLI in watch mode for a test case. |
no test coverage detected