Increase RCTTestRunner timeouts
Reviewed By: shergin Differential Revision: D5706622 fbshipit-source-id: 2185e673913d366afca234d121eaf601ff7c5887
This commit is contained in:
parent
b050b6906d
commit
dacb1fbc11
|
@ -17,7 +17,7 @@
|
|||
|
||||
#define RCT_RUN_RUNLOOP_WHILE(CONDITION) \
|
||||
{ \
|
||||
NSDate *timeout = [NSDate dateWithTimeIntervalSinceNow:5]; \
|
||||
NSDate *timeout = [NSDate dateWithTimeIntervalSinceNow:30]; \
|
||||
NSRunLoop *runloop = [NSRunLoop mainRunLoop]; \
|
||||
while ((CONDITION)) { \
|
||||
[runloop runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.01]]; \
|
||||
|
|
|
@ -152,7 +152,7 @@ expectErrorBlock:(BOOL(^)(NSString *error))expectErrorBlock
|
|||
|
||||
RCTAssert(nonLayoutSubviews.count == 0, @"There shouldn't be any other views: %@", nonLayoutSubviews);
|
||||
#endif
|
||||
|
||||
|
||||
if (expectErrorBlock) {
|
||||
RCTAssert(expectErrorBlock(error), @"Expected an error but nothing matched.");
|
||||
} else {
|
||||
|
@ -165,7 +165,7 @@ expectErrorBlock:(BOOL(^)(NSString *error))expectErrorBlock
|
|||
}
|
||||
|
||||
// Wait for bridge to disappear before continuing to the next test
|
||||
NSDate *invalidateTimeout = [NSDate dateWithTimeIntervalSinceNow:5];
|
||||
NSDate *invalidateTimeout = [NSDate dateWithTimeIntervalSinceNow:30];
|
||||
while (invalidateTimeout.timeIntervalSinceNow > 0 && batchedBridge != nil) {
|
||||
[[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
|
||||
[[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
|
||||
|
|
Loading…
Reference in New Issue