stryker-api
Version:
The api for the extendable JavaScript mutation testing framework Stryker
16 lines • 396 B
TypeScript
import { StrykerOptions } from '../../core';
/**
* Represents an options object to configure a TestRunner.
*/
interface RunnerOptions {
/**
* The names of the files loaded in the sandbox.
*/
fileNames: string[];
/**
* The underlying strykerOptions
*/
strykerOptions: StrykerOptions;
}
export default RunnerOptions;
//# sourceMappingURL=RunnerOptions.d.ts.map