stryker-api
Version:
The api for the extendable JavaScript mutation testing framework Stryker
19 lines • 343 B
TypeScript
/**
* Indicates what the result of a single test was.
*/
declare enum TestStatus {
/**
* The test succeeded
*/
Success = 0,
/**
* The test failed
*/
Failed = 1,
/**
* The test was skipped (not executed)
*/
Skipped = 2
}
export default TestStatus;
//# sourceMappingURL=TestStatus.d.ts.map