UNPKG

nightwatch

Version:

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

12 lines (8 loc) 215 B
const ExpectElement = require('./element.js'); class ExpectComponent extends ExpectElement { constructor(...args) { super(...args); this.flag('component', true); } } module.exports = ExpectComponent;