UNPKG

stryker-api

Version:

The api for the extendable JavaScript mutation testing framework Stryker

19 lines 603 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var RunStatus; (function (RunStatus) { /** * Indicates that a test run is completed with failed or succeeded tests */ RunStatus[RunStatus["Complete"] = 0] = "Complete"; /** * Indicates that a test run cut off early with an error */ RunStatus[RunStatus["Error"] = 1] = "Error"; /** * Indicates that a test run timed out */ RunStatus[RunStatus["Timeout"] = 2] = "Timeout"; })(RunStatus || (RunStatus = {})); exports.default = RunStatus; //# sourceMappingURL=RunStatus.js.map