From e08191c2ce13c8fa434dedeffa10b089b6c0f0cf Mon Sep 17 00:00:00 2001 From: Sam Willis Date: Thu, 2 Oct 2025 14:11:52 +0100 Subject: [PATCH] remove console.log from local-only tests --- packages/db/tests/local-only.test.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packages/db/tests/local-only.test.ts b/packages/db/tests/local-only.test.ts index 2b3df3811..74906f4f5 100644 --- a/packages/db/tests/local-only.test.ts +++ b/packages/db/tests/local-only.test.ts @@ -461,10 +461,6 @@ describe(`LocalOnly Collection`, () => { }) ) - testCollection.subscribeChanges((changes) => { - console.log({ testCollectionChanges: changes }) - }) - const query = createCollection( liveQueryCollectionOptions({ startSync: true, @@ -475,10 +471,6 @@ describe(`LocalOnly Collection`, () => { }) ) - query.subscribeChanges((changes) => { - console.log({ queryChanges: changes }) - }) - testCollection.delete(0) await new Promise((resolve) => setTimeout(resolve, 10))