You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/commands/ios/index.ts
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,7 @@ export class IosSetup {
32
32
33
33
if(this.platform!=='mac'){
34
34
Logger.log('Only macOS is supported');
35
+
35
36
returnfalse;
36
37
}
37
38
@@ -90,7 +91,7 @@ export class IosSetup {
90
91
`\nAnd then update ${colors.cyan('safari:deviceName')} (eg: 'iphone 13') and ${colors.cyan('safari:platformVersion')} (eg: '15.0') in nightwatch configuration for ${colors.gray.italic('ios.simulator.safari')} environment accordingly.`
91
92
,{padding: 1}));
92
93
}catch(error){
93
-
Logger.log(` ${colors.red(symbols().fail)} Xcode is not installed.`);
94
+
Logger.log(` ${colors.red(symbols().ok)} Xcode is not installed.`);
94
95
missingRequirements.push('Xcode is not installed')
95
96
}
96
97
}
@@ -113,7 +114,7 @@ export class IosSetup {
113
114
}
114
115
}catch(error){
115
116
Logger.log(` ${colors.red(symbols().fail)} Device is either not connected or turned off.`);
116
-
missingRequirements.push('Device is not connected')
117
+
missingRequirements.push('Device is not connected');
0 commit comments