nightwatch
Version:
Easy to use Node.js based end-to-end testing solution for web applications using the W3C WebDriver API.
24 lines (18 loc) • 405 B
JavaScript
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;