stryker-git-checker
Version:
Git Checker for Stryker Mutator Javascript testing framework
12 lines • 552 B
TypeScript
import { CheckResult } from "@stryker-mutator/api/check";
import { Location } from "@stryker-mutator/api/core";
import { LineDifferenceRange } from "./diff-parser";
/**
* Checks if the mutant location has overlap with the Git diffs.
*
* @param location The mutant location to be checked.
* @param diff The diff in the parsed Git diff command output.
* @returns The Check Result.
*/
export declare const checkDiff: (location: Location, diff?: Map<number, LineDifferenceRange> | undefined) => CheckResult;
//# sourceMappingURL=diff-checker.d.ts.map