File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ export const SETUP_CONFIG_QUES: inquirer.QuestionCollection = [
55 {
66 type : 'list' ,
77 name : 'mode' ,
8- message : 'Where do you want to run the tests? ' ,
8+ message : 'Select target device(s): ' ,
99 choices : [
10- { name : 'On real iOS device' , value : 'real' } ,
11- { name : 'On an iOS Simulator' , value : 'simulator' } ,
10+ { name : 'Real iOS device' , value : 'real' } ,
11+ { name : 'iOS Simulator' , value : 'simulator' } ,
1212 { name : 'Both' , value : 'both' }
1313 ]
1414 }
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ export class IosSetup {
8484 execSync ( '/usr/bin/xcodebuild -version' , {
8585 stdio : 'pipe'
8686 } ) ;
87- Logger . log ( ` ${ colors . red ( symbols ( ) . ok ) } Xcode is installed in your machine\n` ) ;
87+ Logger . log ( ` ${ colors . green ( symbols ( ) . ok ) } Xcode is installed in your machine\n` ) ;
8888
8989 Logger . log ( boxen ( 'Run the following command to get the list of simulators\n' +
9090 colors . cyan . italic ( 'xcrun simctl list devices' ) + '\n' +
You can’t perform that action at this time.
0 commit comments