Skip to content

Commit 6753a67

Browse files
authored
Merge branch 'master' into firebase-v7
2 parents c37fcb7 + 1c89c38 commit 6753a67

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

docs/install-and-setup.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ After adding the AngularFireModule you also need to add modules for the individu
104104
- `AngularFireRemoteConfigModule`
105105
- `AngularFireStorageModule`
106106
- `AngularFireMessagingModule`
107+
- `AngularFirePerformanceModule`
107108

108109
#### Adding the Firebase Database and Auth Modules
109110

src/auth/auth.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ describe('AngularFireAuth', () => {
7171
});
7272
});
7373

74-
it('should be exist', () => {
74+
it('should exist', () => {
7575
expect(afAuth instanceof AngularFireAuth).toBe(true);
7676
});
7777

src/firestore/firestore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export function associateQuery(collectionRef: CollectionReference, queryFn = ref
6565
* import { Component } from '@angular/core';
6666
* import { AngularFirestore, AngularFirestoreCollection, AngularFirestoreDocument } from '@angular/fire/firestore';
6767
* import { Observable } from 'rxjs/Observable';
68-
* import { from } from 'rxjs/observable/from';
68+
* import { from } from 'rxjs/observable';
6969
*
7070
* @Component({
7171
* selector: 'app-my-component',

src/functions/functions.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe('AngularFireFunctions', () => {
2626
done();
2727
});
2828

29-
it('should be exist', () => {
29+
it('should exist', () => {
3030
expect(afFns instanceof AngularFireFunctions).toBe(true);
3131
});
3232

src/performance/performance.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ describe('AngularFirePerformance', () => {
2525
done();
2626
});
2727

28-
it('should be exist', () => {
28+
it('should exist', () => {
2929
expect(afp instanceof AngularFirePerformance).toBe(true);
3030
});
3131

3232
it('should have the Performance instance', () => {
3333
expect(afp.performance).toBeDefined();
3434
});
3535

36-
});
36+
});

0 commit comments

Comments
 (0)