@build-break Disable flaky react tests

This commit is contained in:
Adam Ernst 2015-06-08 10:38:44 -04:00
Родитель fc48f175c3
Коммит 16b8747f61
2 изменённых файлов: 10 добавлений и 7 удалений

Просмотреть файл

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

Просмотреть файл

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