-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tests failing with chrome #53
Comments
Problematic section of code is the When This issue arises when |
Narrowing down further this check has started to fail: I noticed two issues:
"chrome-extension://
dbjbkadblogdlnkiablkonbbpiaempmj
/register.html" The issue here is that the URL is encoding extra spaces as %20, leading to an invalid match. |
This isn't a major issue. And is not the reason for recent failures. |
Recently E2E tests have been failing within the wallet app:
https://github.com/Agoric/wallet-app/actions/runs/11828028790
https://github.com/Agoric/wallet-app/actions/runs/11807920901
The very first test case is failing which involves setting up the Keplr wallet. The first test case is very important as all the other tests depend on it. Due to this majority of tests will fail in the CI run. This was shocking because we have other dapps such as
dapp-psm
,dapp-inter
etc and none of those dapps failed the test case related to setting up the Keplr wallet.@agoric/synpress
is failing on this line. And the Cypress test runner shows the following stack trace:Quick Fix
We can switch to using the Chromium browser in CI like other dapps. This will address the issue for us in CI. Such a solution is implemented in Agoric/wallet-app#199
Impact of the Issue
For CI, we can use the Chromium browser, similar to other dapps. But, for local testing, we have two options:
The text was updated successfully, but these errors were encountered: