From 39d39b40847f59c63e3e7dfcbefa6a399ffb00cb Mon Sep 17 00:00:00 2001 From: James Daniels Date: Tue, 6 Jun 2017 17:24:26 -0700 Subject: [PATCH] Remove console.log from the auth spec --- src/auth/auth.spec.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/auth/auth.spec.ts b/src/auth/auth.spec.ts index 74d5ae298..5c12e2d8e 100644 --- a/src/auth/auth.spec.ts +++ b/src/auth/auth.spec.ts @@ -90,7 +90,6 @@ describe('AngularFireAuth', () => { // Check that the first value is null and second is the auth user const subs = afAuth.authState.subscribe(user => { - console.log('What...', count, user); if (count === 0) { expect(user).toBe(null); count = count + 1; @@ -101,7 +100,6 @@ describe('AngularFireAuth', () => { done(); } }, done, done.fail); - console.log('....!?'); mockAuthState.next(null); }); @@ -110,7 +108,6 @@ describe('AngularFireAuth', () => { // Check that the first value is null and second is the auth user const subs = afAuth.idToken.subscribe(user => { - console.log("HI!....", count, user); if (count === 0) { expect(user).toBe(null); count = count + 1;