[tests] un-focus tests

This commit is contained in:
Salakar 2017-05-25 12:57:08 +01:00
parent 231f6852de
commit f7a5535f3b
2 changed files with 4 additions and 4 deletions

View File

@ -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();

View File

@ -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",