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 88ca7d6 commit 5b1c04bCopy full SHA for 5b1c04b
packages/database/test/exp/integration.test.ts
@@ -120,7 +120,11 @@ describe('Database@exp Tests', () => {
120
unsubscribe();
121
});
122
123
- it.only('can properly handle unknown deep merges', async () => {
+ it('can properly handle unknown deep merges', async () => {
124
+ // Note: This test requires `testIndex` to be added as an index.
125
+ // Without an index, the test will erroneously pass.
126
+ // But we are unable to add indexes on the fly to the actual db, so
127
+ // running on the emulator is the best way to test this.
128
const database = getDatabase(defaultApp);
129
const root = ref(database, 'testing');
130
await set(root, {});
0 commit comments