Skip to content

Commit

Permalink
ci: adds detox e2e github actions pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
WarleyLopes committed May 14, 2024
1 parent 2f9eb2d commit d42db69
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
path: |
native-app/node_modules
backend/node_modules
native-app/ios/Pods
native-app/ios/build
~/Library/Developer/Xcode/DerivedData
native-app/.expo
Expand Down
3 changes: 3 additions & 0 deletions native-app/e2e/test-assets/screens/logPartTab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ export class LOG_PART_TAB {
static async setPartValue(partValue: string): Promise<void> {
await waitFor(this.PART_VALUE_INPUT_ELEMENT_BY_ID).toBeVisible();
await this.PART_VALUE_INPUT_ELEMENT_BY_ID.replaceText(partValue + '\n');
if (RUNNING_IOS) {
await element(by.text('Log Part')).atIndex(0).tap();
}
}

static async savePart(): Promise<void> {
Expand Down

0 comments on commit d42db69

Please sign in to comment.