mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-25 21:05:40 +08:00
Fixed UIExplorer tests + async methods
Summary: public UIExplorer tests were broken due to a refactor that didn't update the RCTShadowViewTests + an off-by-one error in the logic for exporting async methods. Reviewed By: javache Differential Revision: D2595810 fb-gh-sync-id: c25a8b8956bff1ef2754bba4a8f10d72a16e2954
This commit is contained in:
committed by
facebook-github-bot-4
parent
516196b260
commit
9f4da92195
@@ -89,13 +89,13 @@ RCT_NOT_IMPLEMENTED(- (instancetype)init);
|
||||
NSMutableArray *methods = self.methods.count ? [NSMutableArray new] : nil;
|
||||
NSMutableArray *asyncMethods = nil;
|
||||
for (id<RCTBridgeMethod> method in self.methods) {
|
||||
[methods addObject:method.JSMethodName];
|
||||
if (method.functionType == RCTFunctionTypePromise) {
|
||||
if (!asyncMethods) {
|
||||
asyncMethods = [NSMutableArray new];
|
||||
}
|
||||
[asyncMethods addObject:@(methods.count)];
|
||||
}
|
||||
[methods addObject:method.JSMethodName];
|
||||
}
|
||||
|
||||
NSMutableArray *config = [NSMutableArray new];
|
||||
|
||||
Reference in New Issue
Block a user