Files
react-native-firebase/packages/crashlytics/__tests__/crashlytics.test.ts
Darren Ackers e0082abd64 tests: jest testing migration crashlytics (#3588)
* tests(crashlytics): migrate JS only tests to Jest

* Converted crashlytics tests to ts
2020-05-05 22:38:29 +01:00

12 lines
296 B
TypeScript

import { firebase } from '../lib';
describe('Crashlytics', () => {
describe('namespace', () => {
it('accessible from firebase.app()', () => {
const app = firebase.app();
expect(app.crashlytics).toBeDefined();
expect(app.crashlytics().app).toEqual(app);
});
});
});