wdio-performancetotal-service
Version:
WebdriverIO service for analyzing test flow performance
21 lines (20 loc) • 596 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StepType = exports.PartialLogEntry = void 0;
class PartialLogEntry {
constructor() {
this.name = "";
this.id = "";
this.type = StepType.Start;
this.time = 0;
this.displayTime = "";
this.instanceId = "";
this.brName = "";
}
}
exports.PartialLogEntry = PartialLogEntry;
var StepType;
(function (StepType) {
StepType[StepType["Start"] = 0] = "Start";
StepType[StepType["End"] = 1] = "End";
})(StepType || (exports.StepType = StepType = {}));