html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
13 lines • 342 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BaseRunner = void 0;
class BaseRunner {
constructor(collection) {
this._collection = collection;
}
run(runHandler) {
return runHandler(this._collection);
}
}
exports.BaseRunner = BaseRunner;
//# sourceMappingURL=runner.js.map