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
There are a couple things we'll want to test. Right now, SelectMulti.spec.ts only checks for behavior when clicking options. Let's add some initial specs for pressing enter, and lets add them to both SelectMulti.spec.ts and SelectSingle.spec.ts. Things like:
When I press enter on an option, it's selected.
When I press enter on an option, it emits the correct event(s)
(multi) When I press enter on a selected option, it's unselected
(multi) When I press enter not on an option, no event is emitted/nothing happens
(multi) When I press enter while on a selected pill, it's unselected
The text was updated successfully, but these errors were encountered:
Per this comment: #71 (comment)
There are a couple things we'll want to test. Right now,
SelectMulti.spec.ts
only checks for behavior when clicking options. Let's add some initial specs for pressing enter, and lets add them to bothSelectMulti.spec.ts
andSelectSingle.spec.ts
. Things like:The text was updated successfully, but these errors were encountered: