(j: { progress: number; currentStage?: string })
| 387 | }); |
| 388 | renderJob = job; |
| 389 | const onProgress = (j: { progress: number; currentStage?: string }) => { |
| 390 | state.progress = j.progress; |
| 391 | if (j.currentStage) state.stage = j.currentStage; |
| 392 | }; |
| 393 | await executeRenderJob(job, opts.project.dir, opts.outputPath, onProgress); |
| 394 | state.status = "complete"; |
| 395 | state.progress = 100; |
no outgoing calls
no test coverage detected