testplane
Version:
Tests framework based on mocha and wdio
22 lines (21 loc) • 738 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CancelledError = void 0;
/**
* @category Errors
*/
class CancelledError extends Error {
constructor() {
super();
this.name = "CancelledError";
this.message = `Browser request was cancelled
What happened:
- This test tried to run in a browser that was already stopped
- This likely happened due to a critical error, like an unhandled promise rejection
What you can do:
- Check other failed tests or execution logs for more details, usually you can find the root cause there`;
Error.captureStackTrace(this, CancelledError);
}
}
exports.CancelledError = CancelledError;
//# sourceMappingURL=cancelled-error.js.map