UNPKG

@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.

27 lines (26 loc) 797 B
export interface StrykerExecutorSchema { strykerConfig: string; allowConsoleColors?: boolean; buildCommand?: string; checkers?: string[]; checkerNodeArgs?: string[]; cleanTempDir?: boolean; concurrency?: number; coverageAnalysis?: 'off' | 'all' | 'perTest'; disableBail?: boolean; dryRunTimeoutMinutes?: number; fileLogLevel?: 'off' | 'error' | 'warn' | 'info' | 'debug' | 'trace'; ignorePatterns?: string[]; ignoreStatic?: boolean; inPlace?: boolean; logLevel?: 'off' | 'error' | 'warn' | 'info' | 'debug' | 'trace'; maxTestRunnerReuse?: number; mutate?: string[]; plugins?: string[]; reporters?: string[]; tempDirName?: string; testRunner?: string; testRunnerNodeArgs?: string; timeoutFactor?: number; timeoutMs?: number; } // eslint-disable-line