Disable flaky PropertiesUpdateTest

Reviewed By: AaaChiuuu

Differential Revision: D4810246

fbshipit-source-id: 76b38522eea9332217b515b7ff225c0073381da9
This commit is contained in:
Pieter De Baets
2017-03-31 08:53:00 -07:00
committed by Facebook Github Bot
parent e12e57eb77
commit b133d06057

View File

@@ -121,13 +121,6 @@ static ControlBlock reactContentSizeUpdateBlock(RCTRootViewSizeFlexibility sizeF
};
}
static ControlBlock propertiesUpdateBlock()
{
return ^(RCTRootView *rootView){
rootView.appProperties = @{@"markTestPassed":@YES};
};
}
@interface RCTRootViewIntegrationTests : XCTestCase
@end
@@ -162,6 +155,9 @@ RCT_TEST_DATA_CONFIGURATION_BLOCK(SizeFlexibilityUpdateTest, MultipleUpdates, bo
RCT_TEST_CONFIGURATION_BLOCK(ReactContentSizeUpdateTest, reactContentSizeUpdateBlock(RCTBoth))
// Test if setting 'appProperties' property updates the RN app
RCT_TEST_CONFIGURATION_BLOCK(PropertiesUpdateTest, propertiesUpdateBlock())
// Disabled since it's occassionally crashing
// RCT_TEST_CONFIGURATION_BLOCK(PropertiesUpdateTest, ^(RCTRootView *rootView) {
// rootView.appProperties = @{@"markTestPassed":@YES};
// })
@end