Skip to content

Commit 1a33fb8

Browse files
committed
Small log modification in iOS.
1 parent 1ad7ebb commit 1a33fb8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/commands/ios/constants.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
}

src/commands/ios/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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' +

0 commit comments

Comments
 (0)