html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
18 lines • 691 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AttachmentType = exports.TestStepKey = void 0;
var TestStepKey;
(function (TestStepKey) {
TestStepKey["Name"] = "n";
TestStepKey["Args"] = "a";
TestStepKey["Duration"] = "d";
TestStepKey["IsFailed"] = "f";
TestStepKey["Children"] = "c";
TestStepKey["IsGroup"] = "g";
TestStepKey["TimeStart"] = "ts";
})(TestStepKey || (exports.TestStepKey = TestStepKey = {}));
var AttachmentType;
(function (AttachmentType) {
AttachmentType[AttachmentType["Snapshot"] = 0] = "Snapshot";
})(AttachmentType || (exports.AttachmentType = AttachmentType = {}));
//# sourceMappingURL=types.js.map