(cwd, args, answers = [], options = {})
| 46 | * @returns {Promise<{ stdout: string, stderr: string }>} result |
| 47 | */ |
| 48 | const runPromptWithAnswers = async (cwd, args, answers = [], options = {}) => |
| 49 | testUtilsPkg.runPromptWithAnswers(cwd, args, answers, { |
| 50 | ...options, |
| 51 | executorPath: CLI_PATH, |
| 52 | }); |
| 53 | |
| 54 | return { run, runWatch, runPromptWithAnswers }; |
| 55 | } |
no outgoing calls
no test coverage detected