@@ -34,7 +34,7 @@ import { FetchProvider } from '../util/fetch_provider';
34
34
use ( sinonChai ) ;
35
35
use ( chaiAsPromised ) ;
36
36
37
- describe . only ( 'core/auth/emulator' , ( ) => {
37
+ describe ( 'core/auth/emulator' , ( ) => {
38
38
let auth : TestAuth ;
39
39
let user : UserInternal ;
40
40
let normalEndpoint : fetch . Route ;
@@ -113,23 +113,6 @@ describe.only('core/auth/emulator', () => {
113
113
} ) ;
114
114
} ) ;
115
115
116
- it ( 'subsequent calls update the endpoint appropriately' , async ( ) => {
117
- connectAuthEmulator ( auth , 'http://127.0.0.1:2021' ) ;
118
- expect ( auth . emulatorConfig ) . to . eql ( {
119
- protocol : 'http' ,
120
- host : '127.0.0.1' ,
121
- port : 2021 ,
122
- options : { disableWarnings : false }
123
- } ) ;
124
- connectAuthEmulator ( auth , 'http://127.0.0.1:2020' ) ;
125
- expect ( auth . emulatorConfig ) . to . eql ( {
126
- protocol : 'http' ,
127
- host : '127.0.0.1' ,
128
- port : 2020 ,
129
- options : { disableWarnings : false }
130
- } ) ;
131
- } ) ;
132
-
133
116
it ( 'updates the endpoint appropriately' , async ( ) => {
134
117
connectAuthEmulator ( auth , 'http://127.0.0.1:2020' ) ;
135
118
await user . delete ( ) ;
@@ -184,7 +167,7 @@ describe.only('core/auth/emulator', () => {
184
167
) ;
185
168
} ) ;
186
169
187
- it . only ( 'skips console info and has no banner if warnings disabled' , ( ) => {
170
+ it ( 'skips console info and has no banner if warnings disabled' , ( ) => {
188
171
sinon . stub ( console , 'info' ) ;
189
172
connectAuthEmulator ( auth , 'http://127.0.0.1:2020' , {
190
173
disableWarnings : true
0 commit comments