mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
529c952499
Summary: This PR is small cleanup in `.circleci/config.yml` file. Request here: https://github.com/facebook/react-native/pull/36267#discussion_r1272050735 ## Changelog: [INTERNAL] [CHANGED] - move script checking Appium server status to separate file Pull Request resolved: https://github.com/facebook/react-native/pull/38692 Test Plan: CI Green ✅ Reviewed By: NickGerleman Differential Revision: D47926222 Pulled By: ryancat fbshipit-source-id: eeff338ca018549762dce46a744b80f659b4bd5d
12 lines
355 B
Bash
Executable File
12 lines
355 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
# This script checks if Appium server is running on default port (which is 4723).
|
|
if ! nc -z 127.0.0.1 4723; then
|
|
echo Could not find Appium server.
|
|
exit 1
|
|
fi
|