@nx-plugins/stryker
Version:
The Nx Plugin for Stryker that contains executors and generators for allowing your workspace to use powerful Stryker mutation testing capabilities.
35 lines (34 loc) • 798 B
TypeScript
export interface StrykerGeneratorSchema {
project: string;
commandRunner?: {
command: string;
},
coverageAnalysis?: 'off' | 'all' | 'perTest';
ignorePatterns?: string;
logLevel?: 'off' | 'error' | 'warn' | 'info' | 'debug' | 'trace';
mutate?: string[];
reporters?: string;
htmlReporter?: {
fileName?: string;
};
jsonReporterFileName?: {
fileName?: string;
};
clearTextReporter?: {
allowColor?: boolean;
logTests?: boolean;
maxTestsToLog?: number;
};
tempDirName?: string;
testRunner?: string;
testRunnerNodeArgs?: string;
thresholds?: {
high?: number;
low?: number;
break?: number;
};
timeoutFactor?: number;
timeoutMs?: number;
skipPackageJson?: boolean;
skipFormat?: boolean;
}