test: improve reliability of /bugs/4641 #6013
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Ref #6001
Description
Refactor existing tests that should avoid timeouts.
In Cypress, the
.should
command asserts an explicit argument against a single value. In this case, we want to be able to place multiple assertions. Therefore, this change utilizes the.then
callback for.its
command, to which we can inspect various elements and make multiple assertions. Using a callback also ensures that the request was completed before we make a set of assertionsNote, for 2 of the 3 tests, since the assertion is on a specific known argument and expected value, it is possible to utilize
.should
, albeit with structural change. e.g.Motivation and Context
The existing test in /bugs/4641.js intermittently fails on CI.
Fixes #6001
How Has This Been Tested?
updated test passes
Screenshots (if appropriate):
Checklist
My PR contains...
src/
is unmodified: changes to documentation, CI, metadata, etc.)package.json
)My changes...
Documentation
Automated tests