nightwatch
Version:
Easy to use Node.js based end-to-end testing solution for web applications using the W3C WebDriver API.
13 lines (12 loc) • 344 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const BaseHook = require('./_basehook.js');
class BeforeAll extends BaseHook {
get skipTestcasesOnError() {
return true;
}
constructor(context, addtOpts) {
super(BaseHook.beforeEach, context, addtOpts);
}
}
module.exports = BeforeAll;