Disable iOS end-to-end tests (#24962)

Summary:
The iOS end-to-end tests are currently broken. I'm disabling them to bring the tests back to green and unblock other PRs, until they can be fixed.

## Changelog

[Internal] [Removed] - Disable iOS e2e test
Pull Request resolved: https://github.com/facebook/react-native/pull/24962

Differential Revision: D15415872

Pulled By: hramos

fbshipit-source-id: 1a146a2eb36d5bf9b4e1f8cc9daf9b3e4d0cfab1
This commit is contained in:
Héctor Ramos
2019-05-20 10:24:11 -07:00
committed by Facebook Github Bot
parent adc0878703
commit 9785a572ee
+9 -9
View File
@@ -507,15 +507,15 @@ jobs:
node ./scripts/run-ci-e2e-tests.js --js --retries 3
when: always
- run:
name: Run iOS End-to-End Tests
command: |
# free up port 8081 for the packager before running tests
set +eo pipefail
lsof -i tcp:8081 | awk 'NR!=1 {print $2}' | xargs kill
set -eo pipefail
node ./scripts/run-ci-e2e-tests.js --ios --retries 3;
when: always
# - run:
# name: Run iOS End-to-End Tests
# command: |
# # free up port 8081 for the packager before running tests
# set +eo pipefail
# lsof -i tcp:8081 | awk 'NR!=1 {print $2}' | xargs kill
# set -eo pipefail
# node ./scripts/run-ci-e2e-tests.js --ios --retries 3;
# when: always
# -------------------------