From 9c646ec79ac9c2e207b4873712492cc0d14929b4 Mon Sep 17 00:00:00 2001 From: David Vacca Date: Mon, 26 Jun 2023 16:58:14 -0700 Subject: [PATCH] Re-enable ReactHostTest (#37982) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/37982 ReactHostTest was disabled as part of D44729814, I'm re-enabling it as they pass locally changelog: [internal] internal Reviewed By: cortinico Differential Revision: D46806278 fbshipit-source-id: 7fa530b4ea5bcacb72253218eded6f9a96e4cdf9 --- .../java/com/facebook/react/bridgeless/ReactHostTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react-native/ReactAndroid/src/test/java/com/facebook/react/bridgeless/ReactHostTest.java b/packages/react-native/ReactAndroid/src/test/java/com/facebook/react/bridgeless/ReactHostTest.java index 21950e7c54c..83e4135982a 100644 --- a/packages/react-native/ReactAndroid/src/test/java/com/facebook/react/bridgeless/ReactHostTest.java +++ b/packages/react-native/ReactAndroid/src/test/java/com/facebook/react/bridgeless/ReactHostTest.java @@ -49,8 +49,8 @@ import org.robolectric.android.controller.ActivityController; "androidx.*", "javax.net.ssl.*" }) -@PrepareForTest({ReactHost.class, ComponentFactory.class}) @Ignore("Ignore for now as these tests fail in OSS only") +@PrepareForTest({ReactHost.class, ComponentFactory.class}) public class ReactHostTest { private ReactHostDelegate mReactHostDelegate; @@ -105,7 +105,7 @@ public class ReactHostTest { assertThat(uiManager).isNull(); } - @Ignore("FIXME") + @Test public void testGetDevSupportManager() { assertThat(mReactHost.getDevSupportManager()).isEqualTo(mDevSupportManager); }