Skip to content

Commit 7427858

Browse files
committed
tweak unit test descriptions
1 parent d8fccbe commit 7427858

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/firestore/test/unit/api/database.test.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ describe('Settings', () => {
359359
expect(db._getSettings().experimentalForceLongPolling).to.be.false;
360360
});
361361

362-
it('long polling autoDetect=[something truthy] is corced to true', () => {
362+
it('long polling autoDetect=[something truthy] should be coerced to true', () => {
363363
// Use a new instance of Firestore in order to configure settings.
364364
const db = newTestFirestore();
365365
db._setSettings({
@@ -368,7 +368,7 @@ describe('Settings', () => {
368368
expect(db._getSettings().experimentalAutoDetectLongPolling).to.be.true;
369369
});
370370

371-
it('long polling autoDetect=[something falsy] is corced to false', () => {
371+
it('long polling autoDetect=[something falsy] should be coerced to false', () => {
372372
// Use a new instance of Firestore in order to configure settings.
373373
const db = newTestFirestore();
374374
db._setSettings({
@@ -377,7 +377,7 @@ describe('Settings', () => {
377377
expect(db._getSettings().experimentalAutoDetectLongPolling).to.be.false;
378378
});
379379

380-
it('long polling force=[something truthy] is corced to true', () => {
380+
it('long polling force=[something truthy] should be coerced to true', () => {
381381
// Use a new instance of Firestore in order to configure settings.
382382
const db = newTestFirestore();
383383
db._setSettings({
@@ -386,7 +386,7 @@ describe('Settings', () => {
386386
expect(db._getSettings().experimentalForceLongPolling).to.be.true;
387387
});
388388

389-
it('long polling force=[something falsy] is corced to false', () => {
389+
it('long polling force=[something falsy] should be coerced to false', () => {
390390
// Use a new instance of Firestore in order to configure settings.
391391
const db = newTestFirestore();
392392
db._setSettings({

0 commit comments

Comments
 (0)