Skip to content

Commit

Permalink
final fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pauliusguzas committed Dec 2, 2024
1 parent 2f5514d commit 1070359
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-harness-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
jobs:
e2e-harness-android:
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event.label.name == 'e2e-harness-android' || github.event.label.name == 'e2e' }}
runs-on: [self-hosted, macos, android]
runs-on: [self-hosted, macos]
steps:
- uses: actions/checkout@v2
- name: Setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-harness-androidtv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
jobs:
e2e-harness-androidtv:
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event.label.name == 'e2e-harness-androidtv' || github.event.label.name == 'e2e' }}
runs-on: [self-hosted, macos, android]
runs-on: [self-hosted, macos]
steps:
- uses: actions/checkout@v2
- name: Setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-harness-tvos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
jobs:
e2e-harness-tvos:
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event.label.name == 'e2e-harness-tvos' || github.event.label.name == 'e2e' }}
runs-on: [self-hosted, macos, apple]
runs-on: [self-hosted, macos]
steps:
- uses: actions/checkout@v2
- name: Setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-template-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
jobs:
e2e-template-android:
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event.label.name == 'e2e-template-android' || github.event.label.name == 'e2e' }}
runs-on: [self-hosted, macos, android]
runs-on: [self-hosted, macos]
steps:
- uses: actions/checkout@v2
- name: Setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-template-androidtv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
jobs:
e2e-template-androidtv:
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event.label.name == 'e2e-template-androidtv' || github.event.label.name == 'e2e' }}
runs-on: [self-hosted, macos, android]
runs-on: [self-hosted, macos]
steps:
- uses: actions/checkout@v2
- name: Setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-template-tvos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
jobs:
e2e-template-tvos:
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event.label.name == 'e2e-template-tvos' || github.event.label.name == 'e2e' }}
runs-on: [self-hosted, macos, apple]
runs-on: [self-hosted, macos]
steps:
- uses: actions/checkout@v2
- name: Setup
Expand Down
4 changes: 4 additions & 0 deletions packages/app-harness/test/specs/e2e.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ describe('Test App Harness', () => {
});

it('--> Hermes Support ', async () => {
if (process.env.PLATFORM === 'ios') {
await FlexnRunner.waitForDisplayedByText('Allow');
await FlexnRunner.clickByText('Allow');
}
await FlexnRunner.waitForDisplayedById('app-harness-home-renative-image');
if (process.env.PLATFORM === 'web') {
await FlexnRunner.expectToHaveTextById('app-harness-home-hermes-support-text', 'hermes: no');
Expand Down

0 comments on commit 1070359

Please sign in to comment.