alsatian
Version:
TypeScript and JavaScript testing framework for beautiful and readable tests
10 lines • 435 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var TestOutcome;
(function (TestOutcome) {
TestOutcome[TestOutcome["Error"] = 0] = "Error";
TestOutcome[TestOutcome["Fail"] = 1] = "Fail";
TestOutcome[TestOutcome["Pass"] = 2] = "Pass";
TestOutcome[TestOutcome["Skip"] = 3] = "Skip";
})(TestOutcome = exports.TestOutcome || (exports.TestOutcome = {}));
//# sourceMappingURL=test-outcome.js.map