We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f89eaab commit aa74963Copy full SHA for aa74963
lib/appium-server.ts
@@ -133,6 +133,10 @@ export class AppiumServer {
133
logInfo(`Server args: `, startingServerArgs);
134
135
this._server = spawn(this._appium, startingServerArgs);
136
+ this._server.on('error', (err) => {
137
+ console.error('Failed to start appium! Do you have it installed?');
138
+ console.error(err);
139
+ });
140
}
141
142
public async stop() {
0 commit comments