cypress-zephyr
Version:
Cypress reporter for Zephyr
13 lines (12 loc) • 400 B
JavaScript
;
const mocha_1 = require("mocha");
const reporter_1 = require("./reporter");
class BaseReporter extends mocha_1.reporters.Base {
reporter;
constructor(runner, options) {
super(runner, options);
this.reporter = new reporter_1.Reporter(runner, options.reporterOptions.projectKey);
this.reporter.setupZephyrReporter();
}
}
module.exports = BaseReporter;