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
This commit is contained in:
David Vacca
2023-06-26 16:58:14 -07:00
committed by Facebook GitHub Bot
parent 247da6ef7f
commit 9c646ec79a
@@ -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);
}