@@ -363,6 +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
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
366
367
experimentalAutoDetectLongPolling : 1 as any
367
368
} ) ;
368
369
expect ( db . _getSettings ( ) . experimentalAutoDetectLongPolling ) . to . be . true ;
@@ -372,6 +373,7 @@ describe('Settings', () => {
372
373
// Use a new instance of Firestore in order to configure settings.
373
374
const db = newTestFirestore ( ) ;
374
375
db . _setSettings ( {
376
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
375
377
experimentalAutoDetectLongPolling : 0 as any
376
378
} ) ;
377
379
expect ( db . _getSettings ( ) . experimentalAutoDetectLongPolling ) . to . be . false ;
@@ -381,6 +383,7 @@ describe('Settings', () => {
381
383
// Use a new instance of Firestore in order to configure settings.
382
384
const db = newTestFirestore ( ) ;
383
385
db . _setSettings ( {
386
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
384
387
experimentalForceLongPolling : 'I am truthy' as any
385
388
} ) ;
386
389
expect ( db . _getSettings ( ) . experimentalForceLongPolling ) . to . be . true ;
@@ -390,6 +393,7 @@ describe('Settings', () => {
390
393
// Use a new instance of Firestore in order to configure settings.
391
394
const db = newTestFirestore ( ) ;
392
395
db . _setSettings ( {
396
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
393
397
experimentalForceLongPolling : NaN as any
394
398
} ) ;
395
399
expect ( db . _getSettings ( ) . experimentalForceLongPolling ) . to . be . false ;
0 commit comments