stryker-api
Version:
The api for the extendable JavaScript mutation testing framework Stryker
22 lines • 585 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Indicates what the result of a single test was.
*/
var TestStatus;
(function (TestStatus) {
/**
* The test succeeded
*/
TestStatus[TestStatus["Success"] = 0] = "Success";
/**
* The test failed
*/
TestStatus[TestStatus["Failed"] = 1] = "Failed";
/**
* The test was skipped (not executed)
*/
TestStatus[TestStatus["Skipped"] = 2] = "Skipped";
})(TestStatus || (TestStatus = {}));
exports.default = TestStatus;
//# sourceMappingURL=TestStatus.js.map