Skip to content

Commit ce5297a

Browse files
authored
Merge pull request #1023 from angular/jamesdaniels-patch-1
Remove console.log from the auth spec (closes #1022)
2 parents 0e52c28 + 39d39b4 commit ce5297a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/auth/auth.spec.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ describe('AngularFireAuth', () => {
9090

9191
// Check that the first value is null and second is the auth user
9292
const subs = afAuth.authState.subscribe(user => {
93-
console.log('What...', count, user);
9493
if (count === 0) {
9594
expect(user).toBe(null);
9695
count = count + 1;
@@ -101,7 +100,6 @@ describe('AngularFireAuth', () => {
101100
done();
102101
}
103102
}, done, done.fail);
104-
console.log('....!?');
105103
mockAuthState.next(null);
106104
});
107105

@@ -110,7 +108,6 @@ describe('AngularFireAuth', () => {
110108

111109
// Check that the first value is null and second is the auth user
112110
const subs = afAuth.idToken.subscribe(user => {
113-
console.log("HI!....", count, user);
114111
if (count === 0) {
115112
expect(user).toBe(null);
116113
count = count + 1;

0 commit comments

Comments
 (0)