askui
Version:
Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on
13 lines (12 loc) • 512 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AndroidNotConnectedError = void 0;
const android_error_1 = require("./android-error");
class AndroidNotConnectedError extends android_error_1.AndroidError {
constructor() {
super('There is no connection to an Android device. '
+ 'Make sure to call connect() before sending commands.');
this.name = 'AndroidNotConnectedError';
}
}
exports.AndroidNotConnectedError = AndroidNotConnectedError;