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.
feat: cy.press() #31398
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
feat: cy.press() #31398
Changes from 29 commits
c3f4f85
5abbb60
6f5da33
4748f31
f0f5dc0
98063fc
7ec4c8b
c8b61e8
6600009
30bfc52
a12e15f
2e84355
a33bcef
a1f9a27
1ca097c
3637665
7744213
2636de5
fe3a435
8956584
39ffe62
9d60c4d
1b183e5
dc42d30
14d8822
a13c69d
da743c3
98b12c7
9af2e37
a9ac681
e01d3df
c30265b
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
whats the reason we are doing this? is it related to the keys only having one value in it, i.e "tab"?
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 was getting thrown by L#1758 - tslint thinks the
Cypress
reference here is the namespace, but it's the interfaceCypress
within the namespace.(
no-unnecessary-qualifier
throws when you reference the namespace from within the namespace - generally you don't need to and shouldn't, because you're in scope with the namespace. But we have an interface named the same as the namespace, and tslint gets confused because of it)