File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,6 @@ describe('AngularFireAuth', () => {
90
90
91
91
// Check that the first value is null and second is the auth user
92
92
const subs = afAuth . authState . subscribe ( user => {
93
- console . log ( 'What...' , count , user ) ;
94
93
if ( count === 0 ) {
95
94
expect ( user ) . toBe ( null ) ;
96
95
count = count + 1 ;
@@ -101,7 +100,6 @@ describe('AngularFireAuth', () => {
101
100
done ( ) ;
102
101
}
103
102
} , done , done . fail ) ;
104
- console . log ( '....!?' ) ;
105
103
mockAuthState . next ( null ) ;
106
104
} ) ;
107
105
@@ -110,7 +108,6 @@ describe('AngularFireAuth', () => {
110
108
111
109
// Check that the first value is null and second is the auth user
112
110
const subs = afAuth . idToken . subscribe ( user => {
113
- console . log ( "HI!...." , count , user ) ;
114
111
if ( count === 0 ) {
115
112
expect ( user ) . toBe ( null ) ;
116
113
count = count + 1 ;
You can’t perform that action at this time.
0 commit comments