UNPKG

nightwatch

Version:

Easy to use Node.js based End-to-End testing solution for browser based apps and websites, using the W3C WebDriver API.

13 lines (10 loc) 252 B
const BaseHook = require('./_basehook.js'); class BeforeAll extends BaseHook { get skipTestcasesOnError() { return true; } constructor(context, addtOpts) { super(BaseHook.beforeAll, context, addtOpts); } } module.exports = BeforeAll;