[tests] un-focus tests
This commit is contained in:
parent
231f6852de
commit
f7a5535f3b
|
@ -128,13 +128,13 @@ firebase.config().setDefaults({
|
|||
hasExperimentalFeature: false,
|
||||
});
|
||||
|
||||
firebase.remoteConfig.fetch()
|
||||
firebase.config().fetch()
|
||||
.then(() => {
|
||||
return firebase.remoteConfig().activateFetched();
|
||||
return firebase.config().activateFetched();
|
||||
})
|
||||
.then((activated) => {
|
||||
if (!activated) console.log('Fetched data not activated');
|
||||
return firebase.remoteConfig().getValue('hasExperimentalFeature');
|
||||
return firebase.config().getValue('hasExperimentalFeature');
|
||||
})
|
||||
.then((snapshot) => {
|
||||
const hasExperimentalFeature = snapshot.val();
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "react-native-firebase",
|
||||
"version": "1.0.10",
|
||||
"version": "1.1.0",
|
||||
"author": "Invertase <contact@invertase.io> (http://invertase.io)",
|
||||
"description": "A react native firebase library supporting both android and ios native firebase SDK's",
|
||||
"main": "index",
|
||||
|
|
Loading…
Reference in New Issue