Skip to content

Commit a777aa1

Browse files
committed
fix: flaky password test that depends on signincode
Bumping up number of attempts. Since it's polling with early exit, if it finds it early it exits. So the average case shouldn't change.
1 parent 22b5195 commit a777aa1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/e2e/tests/backend/backend-helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ export namespace Auth {
455455
break;
456456
}
457457
await wait(100 + i * 20);
458-
if (i >= 30) {
458+
if (i >= 40) {
459459
throw new StackAssertionError(`Sign-in code message not found after ${i} attempts`, {
460460
response,
461461
messages: messages.map(m => ({ ...m, body: m.body && omit(m.body, ["html"]) })),

0 commit comments

Comments
 (0)