stryker-api
Version:
The api for the extendable JavaScript mutation testing framework Stryker
16 lines • 426 B
TypeScript
import MutantStatus from './MutantStatus';
import { Location, Range } from '../../core';
interface MutantResult {
id: string;
sourceFilePath: string;
mutatorName: string;
status: MutantStatus;
replacement: string;
originalLines: string;
mutatedLines: string;
testsRan: string[];
location: Location;
range: Range;
}
export default MutantResult;
//# sourceMappingURL=MutantResult.d.ts.map