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
Decaff driver part 6 #7320
Decaff driver part 6 #7320
Conversation
… to .js decaffeinate: Rename trigger_spec.coffee from .coffee to .js
decaffeinate: Convert trigger_spec.coffee to JS
… other files check_spec.js focus_spec.js hover_spec.js scroll_spec.js select_spec.js submit_spec.js agents_spec.js aliasing_spec.js angular_spec.js decaffeinate: Run post-processing cleanups on trigger_spec.coffee
Thanks for the contribution! Below are some guidelines Cypress uses when doing PR reviews.
PR Review ChecklistIf any of the following requirements can't be met, leave a comment in the review selecting 'Request changes', otherwise 'Approve'. User Experience
Functionality
Maintainability
Quality
Internal
|
I locally tested the failures and they're all flaky tests. |
}) | ||
|
||
it('changes the subject when matching values even if noop', () => { | ||
const checked = $('<input type=\'checkbox\' name=\'colors\' value=\'blue\' checked>') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably would prefer to change selectors to double quotes instead of \'
when not relevant to code execution.
const checked = $('<input type=\'checkbox\' name=\'colors\' value=\'blue\' checked>') | |
const checked = $('<input type="checkbox" name="colors" value="blue" checked>') |
] | ||
|
||
messages.forEach((msg) => { | ||
expect(this.lastLog.get('message')).to.include(msg) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change shouldn't matter unless the test was intended to also test the order of the messages printed. By the test title it seems like it's not testing that, but I can't be sure of the original intention.
Released in This comment thread has been locked. If you are still experiencing this issue after upgrading to |
Part of #2690
NEVER SQUASH THIS PR.