diff --git a/src/auth/auth.spec.ts b/src/auth/auth.spec.ts index 30e9b28c6..b4405a151 100644 --- a/src/auth/auth.spec.ts +++ b/src/auth/auth.spec.ts @@ -71,7 +71,7 @@ describe('AngularFireAuth', () => { }); }); - it('should be exist', () => { + it('should exist', () => { expect(afAuth instanceof AngularFireAuth).toBe(true); }); diff --git a/src/functions/functions.spec.ts b/src/functions/functions.spec.ts index 40b3b3a58..f213eb9d7 100644 --- a/src/functions/functions.spec.ts +++ b/src/functions/functions.spec.ts @@ -26,7 +26,7 @@ describe('AngularFireFunctions', () => { done(); }); - it('should be exist', () => { + it('should exist', () => { expect(afFns instanceof AngularFireFunctions).toBe(true); }); diff --git a/src/performance/performance.spec.ts b/src/performance/performance.spec.ts index f610feeeb..423945ede 100644 --- a/src/performance/performance.spec.ts +++ b/src/performance/performance.spec.ts @@ -25,7 +25,7 @@ describe('AngularFirePerformance', () => { done(); }); - it('should be exist', () => { + it('should exist', () => { expect(afp instanceof AngularFirePerformance).toBe(true); }); @@ -33,4 +33,4 @@ describe('AngularFirePerformance', () => { expect(afp.performance).toBeDefined(); }); -}); \ No newline at end of file +});