test-results-parser
Version:
Parse test results from JUnit, TestNG, xUnit, cucumber and many more
21 lines (17 loc) • 328 B
JavaScript
class TestSuite {
constructor() {
this.id = '';
this.name = '';
this.total = 0;
this.passed = 0;
this.failed = 0;
this.errors = 0;
this.skipped = 0;
this.duration = 0;
this.status = 'NA';
this.tags = [];
this.metadata = {};
this.cases = [];
}
}
module.exports = TestSuite;