File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,12 @@ import {
1616 IDevice ,
1717 Device ,
1818 DeviceController ,
19+ IOSController ,
20+ AndroidController ,
1921 Platform ,
2022 Status ,
2123 DeviceType
2224} from "mobile-devices-controller" ;
23- import { IOSController } from "../../mobile-devices-controller/lib/ios-controller" ;
24- import { AndroidController } from "../../mobile-devices-controller/lib/android-controller" ;
25-
2625
2726export class DeviceManger implements IDeviceManager {
2827 private static _emulators : Map < string , IDevice > = new Map ( ) ;
@@ -141,6 +140,7 @@ export class DeviceManger implements IDeviceManager {
141140 public async installApp ( args : INsCapabilities ) : Promise < any > {
142141 if ( args . isIOS ) {
143142 IOSController . installApp ( args . device , args . appiumCaps . app ) ;
143+ console . log ( `Application is successfully installed!` )
144144 } else {
145145 AndroidController . installApp ( args . device , args . appiumCaps . app )
146146 }
You can’t perform that action at this time.
0 commit comments