Skip to content

Commit d8fccbe

Browse files
committed
yarn prettier
1 parent 3e2be99 commit d8fccbe

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
@@ -363,7 +363,7 @@ describe('Settings', () => {
363363
// Use a new instance of Firestore in order to configure settings.
364364
const db = newTestFirestore();
365365
db._setSettings({
366-
experimentalAutoDetectLongPolling: 1 as any,
366+
experimentalAutoDetectLongPolling: 1 as any
367367
});
368368
expect(db._getSettings().experimentalAutoDetectLongPolling).to.be.true;
369369
});
@@ -372,7 +372,7 @@ describe('Settings', () => {
372372
// Use a new instance of Firestore in order to configure settings.
373373
const db = newTestFirestore();
374374
db._setSettings({
375-
experimentalAutoDetectLongPolling: 0 as any,
375+
experimentalAutoDetectLongPolling: 0 as any
376376
});
377377
expect(db._getSettings().experimentalAutoDetectLongPolling).to.be.false;
378378
});
@@ -381,7 +381,7 @@ describe('Settings', () => {
381381
// Use a new instance of Firestore in order to configure settings.
382382
const db = newTestFirestore();
383383
db._setSettings({
384-
experimentalForceLongPolling: "I am truthy" as any,
384+
experimentalForceLongPolling: 'I am truthy' as any
385385
});
386386
expect(db._getSettings().experimentalForceLongPolling).to.be.true;
387387
});
@@ -390,7 +390,7 @@ describe('Settings', () => {
390390
// Use a new instance of Firestore in order to configure settings.
391391
const db = newTestFirestore();
392392
db._setSettings({
393-
experimentalForceLongPolling: NaN as any,
393+
experimentalForceLongPolling: NaN as any
394394
});
395395
expect(db._getSettings().experimentalForceLongPolling).to.be.false;
396396
});

0 commit comments

Comments
 (0)