se-runner
Version:
Selenium Test Runner
30 lines (25 loc) • 658 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var IReport = function IReport() {
_classCallCheck(this, IReport);
this.metrics = {
specs: {
failed: 0,
pending: 0,
succeeded: 0,
total: 0
},
suites: {
failed: 0,
succeeded: 0,
total: 0
}
};
this.duration = 0;
this.result = {};
this.success = true;
};
exports.default = IReport;