UNPKG

test-results-parser

Version:

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

14 lines (11 loc) 205 B
class TestStep { constructor() { this.id = ''; this.name = ''; this.duration = 0; this.status = 'NA'; this.failure = ''; this.stack_trace = ''; } } module.exports = TestStep;