UNPKG

nightwatch

Version:

Easy to use Node.js based end-to-end testing solution for web applications using the W3C WebDriver API.

14 lines (10 loc) 253 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;