[tests] Fix incorrect imports
This commit is contained in:
parent
d9b033f6c7
commit
1f5231cfba
|
@ -1,7 +1,7 @@
|
||||||
import { Platform } from 'react-native';
|
import { Platform } from 'react-native';
|
||||||
|
|
||||||
import firebase from 'firebase';
|
import firebase from 'firebase';
|
||||||
import RNfirebase from './../firebase/firebase';
|
import RNfirebase from './../firebase';
|
||||||
|
|
||||||
import DatabaseContents from './tests/support/DatabaseContents';
|
import DatabaseContents from './tests/support/DatabaseContents';
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { Platform } from 'react-native';
|
import { Platform } from 'react-native';
|
||||||
import should from 'should';
|
import should from 'should';
|
||||||
|
|
||||||
import RNFirebase from './../../../firebase/firebase';
|
import RNFirebase from './../../../firebase';
|
||||||
|
|
||||||
const androidTestConfig = {
|
const androidTestConfig = {
|
||||||
// firebase android sdk completely ignores client id
|
// firebase android sdk completely ignores client id
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import RNfirebase from './../../../firebase/firebase';
|
import RNfirebase from './../../../firebase';
|
||||||
|
|
||||||
function storageTests({ describe, it, firebase, tryCatch }) {
|
function storageTests({ describe, it, firebase, tryCatch }) {
|
||||||
describe('ref(:path)', () => {
|
describe('ref(:path)', () => {
|
||||||
|
|
Loading…
Reference in New Issue