From b9560ef35150c16f24fcf88302172239e9a5a8e3 Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Thu, 22 Aug 2024 09:38:57 -0700 Subject: [PATCH 1/3] fix: Re-enable iOS E2E tests --- .ado/azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.ado/azure-pipelines.yml b/.ado/azure-pipelines.yml index de4039b839..bfc87244d3 100644 --- a/.ado/azure-pipelines.yml +++ b/.ado/azure-pipelines.yml @@ -138,8 +138,7 @@ jobs: env: CCACHE_DISABLE: 1 - # Disable iOS E2E tests as they fail on macOS-13 images - # - template: templates/e2e-testing-ios.yml + - template: templates/e2e-testing-ios.yml # Windows bundling and end to end testing - job: WindowsPR From 43ceb00608e79342af5b176df4bcb28655139b8b Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Thu, 22 Aug 2024 10:00:36 -0700 Subject: [PATCH 2/3] Manually open the simulator app --- .ado/templates/e2e-testing-ios.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.ado/templates/e2e-testing-ios.yml b/.ado/templates/e2e-testing-ios.yml index 2207cd9666..5b078367e6 100644 --- a/.ado/templates/e2e-testing-ios.yml +++ b/.ado/templates/e2e-testing-ios.yml @@ -11,6 +11,10 @@ steps: condition: succeeded() displayName: 'Create success build variable' + - script: | + open -a "simulator" + displayName: Open Simulator + - script: | yarn e2etest:ios workingDirectory: apps/E2E From 17204bfd2b87304a42e38bb19cd52ab197022898 Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Fri, 18 Oct 2024 14:27:16 -0500 Subject: [PATCH 3/3] Re-enable Android too --- .ado/azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.ado/azure-pipelines.yml b/.ado/azure-pipelines.yml index bfc87244d3..5bf2d0d7a9 100644 --- a/.ado/azure-pipelines.yml +++ b/.ado/azure-pipelines.yml @@ -59,8 +59,7 @@ jobs: displayName: 'yarn bundle $(platform)' # builds a debug apk and runs E2E tests on it - # Disable as Android E2E tests are failing - # - template: templates/e2e-testing-android.yml + - template: templates/e2e-testing-android.yml - job: macOSPR displayName: macOS PR