html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
13 lines • 382 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getSuitePath = void 0;
const getSuitePath = (suite) => {
if (!suite) {
return [];
}
return suite.root ?
[] :
[].concat((0, exports.getSuitePath)(suite.parent)).concat(suite.title);
};
exports.getSuitePath = getSuitePath;
//# sourceMappingURL=plugin-utils.js.map