in src/coverage-utils/coverage-tracker.ts [32:42]
public async handleCoverageReport(
run: TestRun,
lcovReportPath: string
): Promise<void> {
this.queue = this.queue
.then(() => this.processCoverage(run, lcovReportPath))
.catch(err => {
run.appendOutput(`Error processing coverage: ${err}`)
})
await this.queue
}