From 10cb0f9325647757cd13ee6ea7ade23ae3ea29e6 Mon Sep 17 00:00:00 2001 From: Pieter De Baets Date: Mon, 3 Apr 2017 10:18:27 -0700 Subject: [PATCH] Disable all of RCTRootViewIntegrationTests Reviewed By: fkgozali Differential Revision: D4819589 fbshipit-source-id: d23f1892d750ae4e4efaf85a9ec25094009a7a22 --- .../RCTRootViewIntegrationTests.m | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Examples/UIExplorer/UIExplorerIntegrationTests/RCTRootViewIntegrationTests.m b/Examples/UIExplorer/UIExplorerIntegrationTests/RCTRootViewIntegrationTests.m index a32cee7540a..ca31db98812 100644 --- a/Examples/UIExplorer/UIExplorerIntegrationTests/RCTRootViewIntegrationTests.m +++ b/Examples/UIExplorer/UIExplorerIntegrationTests/RCTRootViewIntegrationTests.m @@ -32,7 +32,7 @@ #import #define RCT_TEST_DATA_CONFIGURATION_BLOCK(appName, testType, input, block) \ -- (void)test##appName##_##testType##_##input \ +- (void)DISABLED_test##appName##_##testType##_##input \ { \ [_runner runTest:_cmd \ module:@#appName \ @@ -41,7 +41,7 @@ configurationBlock:block]; \ } #define RCT_TEST_CONFIGURATION_BLOCK(appName, block) \ -- (void)test##appName \ +- (void)DISABLED_test##appName \ { \ [_runner runTest:_cmd \ module:@#appName \ @@ -155,9 +155,8 @@ RCT_TEST_DATA_CONFIGURATION_BLOCK(SizeFlexibilityUpdateTest, MultipleUpdates, bo RCT_TEST_CONFIGURATION_BLOCK(ReactContentSizeUpdateTest, reactContentSizeUpdateBlock(RCTBoth)) // Test if setting 'appProperties' property updates the RN app -// Disabled since it's occassionally crashing -// RCT_TEST_CONFIGURATION_BLOCK(PropertiesUpdateTest, ^(RCTRootView *rootView) { -// rootView.appProperties = @{@"markTestPassed":@YES}; -// }) +RCT_TEST_CONFIGURATION_BLOCK(PropertiesUpdateTest, ^(RCTRootView *rootView) { + rootView.appProperties = @{@"markTestPassed":@YES}; +}) @end