Skip to content

Commit

Permalink
mitigate redirect flakiness action with max value
Browse files Browse the repository at this point in the history
  • Loading branch information
seaona committed Jun 21, 2024
1 parent 2fe41ee commit 0c255ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/e2e/tests/settings/ipfs-ens-resolution.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,9 @@ describe('Settings', function () {
await driver.wait(async () => {
const currentUrl = await driver.getCurrentUrl();
return currentUrl === ENS_DESTINATION_URL;
}, tinyDelayMs);
}, 10000);
// Setting a large delay has proven to stabilize the flakiness of the redirect
// and it's only a MAX value
},
);
});
Expand Down

0 comments on commit 0c255ca

Please sign in to comment.