Skip to content

Commit

Permalink
test: Fix test typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rschristian committed Dec 17, 2024
1 parent 9a98461 commit eef3c0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ts/dom-attributes-test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ const selectInvalid = <select role="button" />;

const selectMultipleValid = <select multiple={true} role="listbox" />;
// @ts-expect-error A select multiple should not have a role of button
const selectMultipleInvalid = <select multiple={button} role="button" />;
const selectMultipleInvalid = <select multiple={true} role="button" />;



Expand Down

0 comments on commit eef3c0d

Please sign in to comment.