From df4aa2b56d91fe43e176ee002019589f34812128 Mon Sep 17 00:00:00 2001 From: Johannes Millan Date: Wed, 14 Jan 2026 14:22:15 +0100 Subject: [PATCH] fix(e2e): reduce task count in tag deletion test to prevent timeout Reduce tasks from 10 to 5 in the bulk tag deletion sync test. Creating and syncing 10 tasks was exceeding the 180s test timeout. 5 tasks still validates atomic tag deletion behavior. --- e2e/tests/sync/supersync-models.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/tests/sync/supersync-models.spec.ts b/e2e/tests/sync/supersync-models.spec.ts index 84571b3b5..55de2575d 100644 --- a/e2e/tests/sync/supersync-models.spec.ts +++ b/e2e/tests/sync/supersync-models.spec.ts @@ -444,7 +444,7 @@ test.describe('@supersync SuperSync Models', () => { await clientA.sync.setupSuperSync(syncConfig); const tagName = `BulkTag-${testRunId}`; - const taskCount = 10; + const taskCount = 5; // Reduced from 10 to speed up test const taskNames: string[] = []; // 1. Create tag first