nightwatch
Version:
Easy to use Node.js based end-to-end testing solution for web applications using the W3C WebDriver API.
21 lines (20 loc) • 517 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class Debuggability {
static get stepOverAndPause() {
return this._stepOverAndPause || false;
}
static set stepOverAndPause(value) {
this._stepOverAndPause = value;
}
static reset() {
this._stepOverAndPause = false;
}
static get debugMode() {
return this._debugMode;
}
static set debugMode(value) {
this._debugMode = value;
}
}
module.exports = Debuggability;