stryker-api
Version:
The api for the extendable JavaScript mutation testing framework Stryker
16 lines • 370 B
TypeScript
declare enum RunStatus {
/**
* Indicates that a test run is completed with failed or succeeded tests
*/
Complete = 0,
/**
* Indicates that a test run cut off early with an error
*/
Error = 1,
/**
* Indicates that a test run timed out
*/
Timeout = 2
}
export default RunStatus;
//# sourceMappingURL=RunStatus.d.ts.map