testplane
Version:
Tests framework based on mocha and wdio
14 lines • 444 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BaseStateError = void 0;
class BaseStateError extends Error {
constructor(stateName, currImg, refImg) {
super();
this.stateName = stateName;
this.currImg = currImg;
this.refImg = refImg;
this.name = this.constructor.name;
}
}
exports.BaseStateError = BaseStateError;
//# sourceMappingURL=base-state-error.js.map