Home
last modified time | relevance | path

Searched refs:testKey (Results 1 – 5 of 5) sorted by relevance

/expo/packages/expo-secure-store/src/__tests__/
H A DSecureStore-test.native.ts6 const testKey = 'key-test_0.0'; constant
9 await SecureStore.setItemAsync(testKey, testValue, options);
14 testKey,
/expo/packages/expo-branch/ios/EXBranch/RNBranch/
H A DRNBranchConfig.h30 @property (nonatomic, readonly, nullable) NSString *testKey;
H A DRNBranchConfig.m16 NSString * _Nonnull const RNBranchConfigTestKeyOption = @"testKey";
164 - (NSString *)testKey
H A DRNBranch.m58 …NSString *key = branchKey ?: config.branchKey ?: usingTestInstance ? config.testKey : config.liveK…
/expo/packages/expo-branch/android/src/main/java/io/branch/rnbranch/
H A DRNBranchModule.java104 String testKey = config.getTestKey(); in getAutoInstance() local
112 else if (useTest && testKey != null) { in getAutoInstance()
113 Branch.getAutoInstance(context, testKey); in getAutoInstance()