testplane
Version:
Tests framework based on mocha and wdio
16 lines • 474 B
JavaScript
;
module.exports = class HighPriorityBrowserAgent {
static create(...args) {
return new this(...args);
}
constructor(browserAgent) {
this._browserAgent = browserAgent;
}
getBrowser(opts = {}) {
return this._browserAgent.getBrowser({ ...opts, highPriority: true });
}
freeBrowser(...args) {
return this._browserAgent.freeBrowser(...args);
}
};
//# sourceMappingURL=high-priority-browser-agent.js.map