nightwatch
Version:
Easy to use Node.js based end-to-end testing solution for web applications using the W3C WebDriver API.
11 lines (10 loc) • 325 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const AssertionError = require('assertion-error');
class NightwatchAssertError extends AssertionError {
constructor(message) {
super(message);
this.name = 'NightwatchAssertError';
}
}
module.exports = NightwatchAssertError;