We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbaf931 commit a04b531Copy full SHA for a04b531
packages/database-compat/test/database.test.ts
@@ -301,7 +301,9 @@ describe('Database Tests', () => {
301
302
expect(() => {
303
db.useEmulator('localhost', 1234);
304
- }).to.throw(/FIREBASE FATAL ERROR: connectDatabaseEmulator() cannot initialize/);
+ }).to.throw(
305
+ 'FIREBASE FATAL ERROR: connectDatabaseEmulator() cannot initialize or alter the emulator configuration after the database instance has started.'
306
+ );
307
});
308
309
it('refFromURL returns an emulated ref with useEmulator', () => {
0 commit comments