File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -357,7 +357,7 @@ async function getTunnelRegistryClient(): Promise<TunnelApiClient> {
357357 String ( tunnelRegistryPort ) . trim ( ) === ''
358358 ) {
359359 throw new Error (
360- 'Tunnel registry port not found. Please run the tunnel creation script first: sudo appium driver run xcuitest tunnel-creation ' ,
360+ 'Tunnel registry port not found. Please run the tunnel creation script first' ,
361361 ) ;
362362 }
363363 return new TunnelApiClient (
@@ -370,7 +370,7 @@ async function getTunnelInformation(udid: string) {
370370 const tunnelExists = await tunnelApiClient . hasTunnel ( udid ) ;
371371 if ( ! tunnelExists ) {
372372 throw new Error (
373- `No tunnel found for device ${ udid } . Please run the tunnel creation script first: sudo appium driver run xcuitest tunnel-creation ` ,
373+ `No tunnel found for device ${ udid } . Please run the tunnel creation script first` ,
374374 ) ;
375375 }
376376 const tunnelConnection = await tunnelApiClient . getTunnelConnection ( udid ) ;
You can’t perform that action at this time.
0 commit comments