(totalRuns, options = {})
| 238 | } |
| 239 | |
| 240 | function startAutoRunLoop(totalRuns, options = {}) { |
| 241 | autoRunLoop(totalRuns, options).catch((error) => { |
| 242 | handleAutoRunLoopUnhandledError(error).catch(() => {}); |
| 243 | }); |
| 244 | } |
| 245 | |
| 246 | async function autoRunLoop(totalRuns, options = {}) { |
| 247 | let currentRuntime = runtime.get(); |
no test coverage detected