@@ -363,7 +363,7 @@ describe('Settings', () => {
363
363
// Use a new instance of Firestore in order to configure settings.
364
364
const db = newTestFirestore ( ) ;
365
365
db . _setSettings ( {
366
- experimentalAutoDetectLongPolling : 1 as any ,
366
+ experimentalAutoDetectLongPolling : 1 as any
367
367
} ) ;
368
368
expect ( db . _getSettings ( ) . experimentalAutoDetectLongPolling ) . to . be . true ;
369
369
} ) ;
@@ -372,7 +372,7 @@ describe('Settings', () => {
372
372
// Use a new instance of Firestore in order to configure settings.
373
373
const db = newTestFirestore ( ) ;
374
374
db . _setSettings ( {
375
- experimentalAutoDetectLongPolling : 0 as any ,
375
+ experimentalAutoDetectLongPolling : 0 as any
376
376
} ) ;
377
377
expect ( db . _getSettings ( ) . experimentalAutoDetectLongPolling ) . to . be . false ;
378
378
} ) ;
@@ -381,7 +381,7 @@ describe('Settings', () => {
381
381
// Use a new instance of Firestore in order to configure settings.
382
382
const db = newTestFirestore ( ) ;
383
383
db . _setSettings ( {
384
- experimentalForceLongPolling : " I am truthy" as any ,
384
+ experimentalForceLongPolling : ' I am truthy' as any
385
385
} ) ;
386
386
expect ( db . _getSettings ( ) . experimentalForceLongPolling ) . to . be . true ;
387
387
} ) ;
@@ -390,7 +390,7 @@ describe('Settings', () => {
390
390
// Use a new instance of Firestore in order to configure settings.
391
391
const db = newTestFirestore ( ) ;
392
392
db . _setSettings ( {
393
- experimentalForceLongPolling : NaN as any ,
393
+ experimentalForceLongPolling : NaN as any
394
394
} ) ;
395
395
expect ( db . _getSettings ( ) . experimentalForceLongPolling ) . to . be . false ;
396
396
} ) ;
0 commit comments