@build-break Disable flaky react tests

This commit is contained in:
Adam Ernst 2015-06-08 10:38:44 -04:00
parent fc48f175c3
commit 16b8747f61
2 changed files with 10 additions and 7 deletions

View File

@ -39,12 +39,12 @@
#pragma mark Logic Tests #pragma mark Logic Tests
- (void)testTheTester - (void)DISABLED_testTheTester // #7149037
{ {
[_runner runTest:_cmd module:@"IntegrationTestHarnessTest"]; [_runner runTest:_cmd module:@"IntegrationTestHarnessTest"];
} }
- (void)testTheTester_waitOneFrame - (void)DISABLED_testTheTester_waitOneFrame // #7149037
{ {
[_runner runTest:_cmd [_runner runTest:_cmd
module:@"IntegrationTestHarnessTest" module:@"IntegrationTestHarnessTest"
@ -61,29 +61,29 @@
expectErrorRegex:@"because shouldThrow"]; expectErrorRegex:@"because shouldThrow"];
} }
- (void)testTimers - (void)DISABLED_testTimers // #7149037
{ {
[_runner runTest:_cmd module:@"TimersTest"]; [_runner runTest:_cmd module:@"TimersTest"];
} }
- (void)testAsyncStorage - (void)DISABLED_testAsyncStorage // #7149037
{ {
[_runner runTest:_cmd module:@"AsyncStorageTest"]; [_runner runTest:_cmd module:@"AsyncStorageTest"];
} }
- (void)testLayoutEvents - (void)DISABLED_testLayoutEvents // #7149037
{ {
[_runner runTest:_cmd module:@"LayoutEventsTest"]; [_runner runTest:_cmd module:@"LayoutEventsTest"];
} }
- (void)testAppEvents - (void)DISABLED_testAppEvents // #7149037
{ {
[_runner runTest:_cmd module:@"AppEventsTest"]; [_runner runTest:_cmd module:@"AppEventsTest"];
} }
#pragma mark Snapshot Tests #pragma mark Snapshot Tests
- (void)testSimpleSnapshot - (void)DISABLED_testSimpleSnapshot // #7149037
{ {
[_runner runTest:_cmd module:@"SimpleSnapshotTest"]; [_runner runTest:_cmd module:@"SimpleSnapshotTest"];
} }

View File

@ -95,12 +95,15 @@
[_runner runTest:_cmd module:@#name]; \ [_runner runTest:_cmd module:@#name]; \
} }
/*
These tests are all disabled due to #7149037.
RCT_SNAPSHOT_TEST(ViewExample, NO) RCT_SNAPSHOT_TEST(ViewExample, NO)
RCT_SNAPSHOT_TEST(LayoutExample, NO) RCT_SNAPSHOT_TEST(LayoutExample, NO)
RCT_SNAPSHOT_TEST(TextExample, NO) RCT_SNAPSHOT_TEST(TextExample, NO)
RCT_SNAPSHOT_TEST(SwitchExample, NO) RCT_SNAPSHOT_TEST(SwitchExample, NO)
RCT_SNAPSHOT_TEST(SliderExample, NO) RCT_SNAPSHOT_TEST(SliderExample, NO)
RCT_SNAPSHOT_TEST(TabBarExample, NO) RCT_SNAPSHOT_TEST(TabBarExample, NO)
*/
// Make sure this test runs last // Make sure this test runs last
- (void)testZZZ_NotInRecordMode - (void)testZZZ_NotInRecordMode