Skip to content

Commit

Permalink
Firestore: local_store_indexeddb.test.ts: fix spurious errors when ca…
Browse files Browse the repository at this point in the history
…lling persistence.shutdown() after a setup failure.
  • Loading branch information
dconeybe committed Jan 5, 2024
1 parent 7f78362 commit b419a7f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -248,7 +248,7 @@ describe('LocalStore w/ IndexedDB Persistence (Non generic)', () => {
});

afterEach(async () => {
await persistence.shutdown();
await persistence?.shutdown();
await persistenceHelpers.clearTestPersistence();
});

Expand Down

0 comments on commit b419a7f

Please sign in to comment.