test: Stabilize executions filter reset e2e test (#34114)

Co-authored-by: n8n-cat-bot[bot] <n8n-cat-bot[bot]@users.noreply.github.com>
This commit is contained in:
n8n-cat-bot[bot]
2026-07-14 10:10:00 +03:00
committed by GitHub
parent 17905b5f35
commit 62fd9072af
@@ -62,8 +62,10 @@ test.describe(
await expect(n8n.executions.getFilterBadge()).toBeVisible();
await expect(n8n.executions.getFilterResetButton()).toBeVisible();
const resetRequestPromise = n8n.page.waitForResponse((response) =>
response.url().includes('/rest/executions?filter='),
const resetRequestPromise = n8n.page.waitForResponse(
(response) =>
response.url().includes('/rest/executions?filter=') &&
!response.url().includes('success'),
);
await n8n.executions.resetFilter();