Skip to content

Commit 5b1c04b

Browse files
committed
Removed only and added comment
1 parent 88ca7d6 commit 5b1c04b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/database/test/exp/integration.test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,11 @@ describe('Database@exp Tests', () => {
120120
unsubscribe();
121121
});
122122

123-
it.only('can properly handle unknown deep merges', async () => {
123+
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.
124128
const database = getDatabase(defaultApp);
125129
const root = ref(database, 'testing');
126130
await set(root, {});

0 commit comments

Comments
 (0)