UNPKG

test-results-parser

Version:

Parse test results from JUnit, TestNG, xUnit, cucumber and many more

21 lines (18 loc) 352 B
class TestResult { constructor() { this.id = ''; this.name = ''; this.total = 0; this.passed = 0; this.failed = 0; this.errors = 0; this.skipped = 0; this.retried = 0; this.duration = 0; this.status = 'NA'; this.tags = []; this.metadata = {}; this.suites = []; } } module.exports = TestResult;