wdio-performancetotal-service
Version:
WebdriverIO service for analyzing test flow performance
18 lines (17 loc) • 454 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PerformanceResult = void 0;
class PerformanceResult {
constructor() {
this.name = "";
this.brName = "";
this.avgTime = 0;
this.sem = 0;
this.repeats = 0;
this.minValue = 0;
this.maxValue = 0;
this.earliestTime = "";
this.latestTime = "";
}
}
exports.PerformanceResult = PerformanceResult;