mirror of
https://github.com/zhigang1992/reactfire.git
synced 2026-06-20 03:58:55 +08:00
14 lines
399 B
TypeScript
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()');
|
|
});
|
|
});
|