We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a028cfe commit 3ada808Copy full SHA for 3ada808
.github/workflows/e2e-tests-hybrid.yml
@@ -135,6 +135,15 @@ jobs:
135
path: bitkit-e2e-tests
136
ref: ${{ github.event.inputs.e2e_branch || 'ios' }}
137
138
+ - name: Copy app to E2E tests directory
139
+ run: |
140
+ # Create the aut directory in the E2E tests
141
+ mkdir -p bitkit-e2e-tests/aut
142
+ # Copy the app to the expected location
143
+ cp -r e2e-app/bitkit.app bitkit-e2e-tests/aut/bitkit.app
144
+ # Verify the app was copied
145
+ ls -la bitkit-e2e-tests/aut/
146
+
147
- name: Setup Node.js
148
uses: actions/setup-node@v4
149
with:
0 commit comments