(id: string, progress: number, total: number)
| 55 | } |
| 56 | |
| 57 | setProgress(id: string, progress: number, total: number): boolean { |
| 58 | return this.update(id, (job) => { |
| 59 | job.progress = progress; |
| 60 | job.total = total; |
| 61 | }); |
| 62 | } |
| 63 | |
| 64 | complete(id: string, result: Job['result'], evalId: string | null): boolean { |
| 65 | return this.update(id, (job) => { |
no test coverage detected