Skip to content

Commit

Permalink
Docker IOS Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
tauqirsarwar1 committed Mar 20, 2024
1 parent 77db48d commit 2610d97
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/docker_ios_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:

- name: Install and Run Appium Server
id: setup_appium
if: steps.setup_java.outcome == 'success'
if: steps.co_code.outcome == 'success'
run: |
npm install -g appium
appium --log-level info &
Expand All @@ -128,6 +128,15 @@ jobs:
with:
xcode-version: latest

- name: Open IOS simulator
id: setup_xcode
if: steps.setup_xcode.outcome == 'success'
run: |
xcrun simctl list
sleep 5
xcrun simctl boot "iPhone 15 Plus"
sleep 10
- name: Setup dependencies
id: setup_dependencies
if: steps.setup_xcode.outcome == 'success'
Expand Down
2 changes: 1 addition & 1 deletion frontend/test_project/features/mobile/ios_login.feature
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@nondestructive @automated @ios_mobile_test
@nondestructive @automated @ios_mobile_tests
Feature: Basic IOS App functionality

@mobile_test @ios
Expand Down

0 comments on commit 2610d97

Please sign in to comment.