Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/auth/auth.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -101,7 +100,6 @@ describe('AngularFireAuth', () => {
done();
}
}, done, done.fail);
console.log('....!?');
mockAuthState.next(null);
});

Expand All @@ -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;
Expand Down