@stryker-mutator/api
Version:
The api for the extendable JavaScript mutation testing framework Stryker
10 lines • 332 B
TypeScript
export interface MutantCoverage {
static: CoverageData;
perTest: CoveragePerTestId;
}
export type CoveragePerTestId = Record<string, CoverageData>;
/**
* Keys are mutant ids, the numbers are the amount of times it was hit.
*/
export type CoverageData = Record<string, number>;
//# sourceMappingURL=mutant-coverage.d.ts.map