Skip to content

Commit

Permalink
Calypso: Bump e2e timeout to 20secs from 10
Browse files Browse the repository at this point in the history
because it seems everything is slow now
  • Loading branch information
aidvu committed Dec 10, 2024
1 parent ac0b333 commit 5268c1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/calypso-e2e/src/element-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export async function waitForMutations(
observe?: MutationObserverInit;
}
): Promise< void > {
const timeout = options?.timeout || 10000;
const timeout = options?.timeout || 20000;
const debounce = options?.debounce || 1000;
const observe = options?.observe || { attributes: true, subtree: true, childList: true };
const target = await page.waitForSelector( selector );
Expand Down

0 comments on commit 5268c1b

Please sign in to comment.