(accMap, cov)
| 16 | * fast enough to call once per test without tripping teardown timeouts. |
| 17 | */ |
| 18 | export function accumulateCoverage(accMap, cov) { |
| 19 | const map = accMap || libCoverage.createCoverageMap({}) |
| 20 | map.merge(cov) |
| 21 | return map |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Flush the given coverage map to a worker-unique JSON file. Called once |
no outgoing calls
no test coverage detected