/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/scripts/cocoapods/__tests__/jsengine-test.rb
48 строк
1 KB
Riccardo Cipolleschi
Remove the option to use JSC from core (#51946)
16 июн 2025, 12:36
16 июн 2025, 12:36
a6ea626
Код
Авторство
О чём код?
# 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. require "test/unit" require_relative "../jsengine.rb" require_relative "./test_utils/podSpy.rb" require_relative "./test_utils/PodMock.rb" require_relative "./test_utils/Open3Mock.rb" class JSEngineTests < Test::Unit::TestCase :react_native_path def setup @react_native_path = "../.." podSpy_cleanUp() end def teardown ENV['HERMES_ENGINE_TARBALL_PATH'] = nil ENV['USE_THIRD_PARTY_JSC'] = nil Open3.reset() Pod::Config.reset() Pod::UI.reset() podSpy_cleanUp() ENV['CI'] = nil end # ================== # # TEST - setupHermes # # ================== # def test_setupHermes_installsPods # Act setup_hermes!(:react_native_path => @react_native_path) # Assert assert_equal($podInvocationCount, 3) assert_equal($podInvocation["React-jsi"][:path], "../../ReactCommon/jsi") hermes_engine_pod_invocation = $podInvocation["hermes-engine"] assert_equal(hermes_engine_pod_invocation[:podspec], "../../sdks/hermes-engine/hermes-engine.podspec") assert_equal(hermes_engine_pod_invocation[:tag], "") assert_equal($podInvocation["React-hermes"][:path], "../../ReactCommon/hermes") end end