You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The test case should succeed in provisioning a new wallet at line 40 in test/e2e/specs/test.spec.js occasionally fails due to the inconsistent behavior of the Emerynet faucet, as detailed in this GitHub issue.
Consequently, the following test cases have been temporarily disabled:
should succeed in provisioning a new wallet at line 40
should switch to "My Wallet" successfully at line 87
Once the Emerynet faucet's instability issue is resolved, these test cases can be re-enabled.
Re-enabling Test Cases
To re-enable the test cases, revert the skipped test case definitions to active tests:
Modify line 40 from it.skip('should succeed in provisioning a new wallet') to it('should succeed in provisioning a new wallet').
Modify line 87 from it.skip('should switch to "My Wallet" successfully') to it('should switch to "My Wallet" successfully').
These changes will restore the functionality of the test cases and allow them to run as expected.
The text was updated successfully, but these errors were encountered:
Problem Description
The test case
should succeed in provisioning a new wallet
at line 40 intest/e2e/specs/test.spec.js
occasionally fails due to the inconsistent behavior of the Emerynet faucet, as detailed in this GitHub issue.Consequently, the following test cases have been temporarily disabled:
should succeed in provisioning a new wallet
at line 40should switch to "My Wallet" successfully
at line 87Once the Emerynet faucet's instability issue is resolved, these test cases can be re-enabled.
Re-enabling Test Cases
To re-enable the test cases, revert the skipped test case definitions to active tests:
it.skip('should succeed in provisioning a new wallet')
toit('should succeed in provisioning a new wallet')
.it.skip('should switch to "My Wallet" successfully')
toit('should switch to "My Wallet" successfully')
.These changes will restore the functionality of the test cases and allow them to run as expected.
The text was updated successfully, but these errors were encountered: