Skip to content

Commit 99ac64f

Browse files
committed
chore: formatting
1 parent 4004df1 commit 99ac64f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/firestore/e2e/firestore.e2e.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,7 @@ describe('firestore()', function () {
967967
const db = getFirestore();
968968
const testDoc1 = doc(db, `${COLLECTION}/snapshotsInSync1`);
969969
const testDoc2 = doc(db, `${COLLECTION}/snapshotsInSync2`);
970-
970+
971971
const syncPromise = new Promise(resolve => {
972972
const unsubscribe = onSnapshotsInSync(db, () => {
973973
events.push('sync');
@@ -981,10 +981,10 @@ describe('firestore()', function () {
981981
await Promise.all([setDoc(testDoc1, { test: 1 }), setDoc(testDoc2, { test: 2 })]);
982982

983983
await syncPromise;
984-
984+
985985
// Verify unsubscribe worked by doing another write
986986
await setDoc(testDoc1, { test: 3 });
987-
987+
988988
// Cleanup
989989
await Promise.all([deleteDoc(testDoc1), deleteDoc(testDoc2)]);
990990

0 commit comments

Comments
 (0)