Delete unused parameter (#38893)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/38893

This Parameter was false and never set to true. Also, we don't know what that code does and it was not used for more than a year.

## Changelog:
[Internal] - Removing not executed code.

Reviewed By: cortinico, dmytrorykun

Differential Revision: D48189139

fbshipit-source-id: 6a4000f677958aaefadec40d531acb37c98e3ef8
This commit is contained in:
Riccardo Cipolleschi
2023-08-10 09:25:44 -07:00
committed by Facebook GitHub Bot
parent 0c483d309c
commit c5ce508eea
-23
View File
@@ -737,10 +737,6 @@ jobs:
description: Specifies whether unit tests should run.
type: boolean
default: false
run_disabled_tests:
description: Specifies whether disabled tests should run. Set this to true to debug failing tests.
type: boolean
default: false
jsengine:
default: "Hermes"
description: Which JavaScript engine to use. Must be one of "Hermes", "JSC".
@@ -828,26 +824,7 @@ jobs:
tar -zcvf xcresults.tar.gz $XCRESULT_PATH
- store_artifacts:
path: /Users/distiller/Library/Developer/Xcode/xcresults.tar.gz
# Optionally, run disabled tests
- when:
condition: << parameters.run_disabled_tests >>
steps:
- run: echo "Failing tests may be moved here temporarily."
- run:
name: "Run Tests: CocoaPods"
command: ./scripts/process-podspecs.sh
- run:
name: Free up port 8081 for 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
- run_e2e:
platform: ios
# -------------------------
# Collect Results
- report_bundle_size:
platform: ios