@@ -34,7 +34,7 @@ import { FetchProvider } from '../util/fetch_provider';
3434use ( sinonChai ) ;
3535use ( chaiAsPromised ) ;
3636
37- describe . only ( 'core/auth/emulator' , ( ) => {
37+ describe ( 'core/auth/emulator' , ( ) => {
3838 let auth : TestAuth ;
3939 let user : UserInternal ;
4040 let normalEndpoint : fetch . Route ;
@@ -113,23 +113,6 @@ describe.only('core/auth/emulator', () => {
113113 } ) ;
114114 } ) ;
115115
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-
133116 it ( 'updates the endpoint appropriately' , async ( ) => {
134117 connectAuthEmulator ( auth , 'http://127.0.0.1:2020' ) ;
135118 await user . delete ( ) ;
@@ -184,7 +167,7 @@ describe.only('core/auth/emulator', () => {
184167 ) ;
185168 } ) ;
186169
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' , ( ) => {
188171 sinon . stub ( console , 'info' ) ;
189172 connectAuthEmulator ( auth , 'http://127.0.0.1:2020' , {
190173 disableWarnings : true
0 commit comments