-
Notifications
You must be signed in to change notification settings - Fork 106
chore: eslint flat config #2742
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
Conversation
🦋 Changeset detectedLatest commit: 1e43b7d The changes in this PR will be included in the next version bump. This PR includes changesets to release 3 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
✅ Deploy Preview for patternfly-elements ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
a3526f4 to
2b18f99
Compare
assertion labels go in the expect call, not in the getComputedStyle call
tab to chip group instead of calling focus on it this may indicate breakage in delegatesFocus
| }); | ||
|
|
||
| describe('keyboard navigating with arrow keys to third chip and pressing enter', function() { | ||
| beforeEach(() => element.focus()); |
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.
@nikkimk this was the only change I was able to ID that might have practical significance. tests fail on this branch with .focus on the chip group, and in my investigation, i found that this assertion failed because the activeElement remained <body> the whole time.
this fix, using playwright to simulate a Tab key press, rather than calling .focus() fixes the test.
I suspect, but can't yet confirm, that this is because of a bump in playwright version in this PR.
In any event, please confirm that this change doesn't represent breakage for users.
What I did
Testing Instructions
npm run lintNotes to Reviewers
I recommend using the "hide whitespace" option in the github diff view