diff --git a/firestore-next/test.firestore.js b/firestore-next/test.firestore.js index c961af9d..b4e7be20 100644 --- a/firestore-next/test.firestore.js +++ b/firestore-next/test.firestore.js @@ -73,22 +73,36 @@ describe("firestore", () => { const db = getFirestore(app); + const { + initializeFirestore, + memoryLocalCache, + persistentLocalCache, + persistentSingleTabManager, + persistentMultipleTabManager + } = require("firebase/firestore"); + // [START initialize_persistence] - const { enableIndexedDbPersistence } = require("firebase/firestore"); + // Memory cache is the default if no config is specified. + initializeFirestore(app); - enableIndexedDbPersistence(db) - .catch((err) => { - if (err.code == 'failed-precondition') { - // Multiple tabs open, persistence can only be enabled - // in one tab at a a time. - // ... - } else if (err.code == 'unimplemented') { - // The current browser does not support all of the - // features required to enable persistence - // ... - } + // This is the default behavior if no persistence is specified. + initializeFirestore(app, {localCache: memoryLocalCache()}); + + // Defaults to single-tab persistence if no tab manager is specified. + initializeFirestore(app, {localCache: persistentLocalCache(/*settings*/{})}); + + // Same as `initializeFirestore(app, {localCache: persistentLocalCache(/*settings*/{})})`, + // but more explicit about tab management. + initializeFirestore(app, + {localCache: + persistentLocalCache(/*settings*/{tabManager: persistentSingleTabManager()}) + }); + + // Use multi-tab IndexedDb persistence. + initializeFirestore(app, + {localCache: + persistentLocalCache(/*settings*/{tabManager: persistentMultipleTabManager()}) }); - // Subsequent queries will use persistence, if it was enabled successfully // [END initialize_persistence] });