@@ -359,7 +359,7 @@ describe('Settings', () => {
359
359
expect ( db . _getSettings ( ) . experimentalForceLongPolling ) . to . be . false ;
360
360
} ) ;
361
361
362
- it ( 'long polling autoDetect=[something truthy] is corced to true' , ( ) => {
362
+ it ( 'long polling autoDetect=[something truthy] should be coerced to true' , ( ) => {
363
363
// Use a new instance of Firestore in order to configure settings.
364
364
const db = newTestFirestore ( ) ;
365
365
db . _setSettings ( {
@@ -368,7 +368,7 @@ describe('Settings', () => {
368
368
expect ( db . _getSettings ( ) . experimentalAutoDetectLongPolling ) . to . be . true ;
369
369
} ) ;
370
370
371
- it ( 'long polling autoDetect=[something falsy] is corced to false' , ( ) => {
371
+ it ( 'long polling autoDetect=[something falsy] should be coerced to false' , ( ) => {
372
372
// Use a new instance of Firestore in order to configure settings.
373
373
const db = newTestFirestore ( ) ;
374
374
db . _setSettings ( {
@@ -377,7 +377,7 @@ describe('Settings', () => {
377
377
expect ( db . _getSettings ( ) . experimentalAutoDetectLongPolling ) . to . be . false ;
378
378
} ) ;
379
379
380
- it ( 'long polling force=[something truthy] is corced to true' , ( ) => {
380
+ it ( 'long polling force=[something truthy] should be coerced to true' , ( ) => {
381
381
// Use a new instance of Firestore in order to configure settings.
382
382
const db = newTestFirestore ( ) ;
383
383
db . _setSettings ( {
@@ -386,7 +386,7 @@ describe('Settings', () => {
386
386
expect ( db . _getSettings ( ) . experimentalForceLongPolling ) . to . be . true ;
387
387
} ) ;
388
388
389
- it ( 'long polling force=[something falsy] is corced to false' , ( ) => {
389
+ it ( 'long polling force=[something falsy] should be coerced to false' , ( ) => {
390
390
// Use a new instance of Firestore in order to configure settings.
391
391
const db = newTestFirestore ( ) ;
392
392
db . _setSettings ( {
0 commit comments