angles-javascript-client
Version:
This is the javascript client for the Angles Dashboard. It allows you to store your test results.
11 lines • 446 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExecutionStates = void 0;
var ExecutionStates;
(function (ExecutionStates) {
ExecutionStates["SKIPPED"] = "SKIPPED";
ExecutionStates["PASS"] = "PASS";
ExecutionStates["ERROR"] = "ERROR";
ExecutionStates["FAIL"] = "FAIL";
})(ExecutionStates = exports.ExecutionStates || (exports.ExecutionStates = {}));
//# sourceMappingURL=ExecutionStates.js.map