Files
reactfire/reactfire/firestore/firestore.test.tsx
2019-10-09 09:22:21 -07:00

14 lines
399 B
TypeScript

import { renderHook, act } from '@testing-library/react-hooks';
import * as React from 'react';
import '@testing-library/jest-dom/extend-expect';
describe('Firestore', () => {
describe('useFirestoreDoc', () => {
test.todo('returns the same value as ref.onSnapshot()');
});
describe('useFirestoreCollection', () => {
test.todo('returns the same value as ref.onSnapshot()');
});
});