Skip to content

Commit

Permalink
fixup! Release 17.0.0-0
Browse files Browse the repository at this point in the history
  • Loading branch information
amk221 committed Dec 10, 2024
1 parent dbff621 commit e66847d
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,8 @@ module('select-box/options', function (hooks) {
</SelectBox>
</template>);

assert.dom('.select-box__options').hasAttribute(
assert.dom('.select-box__options').doesNotHaveAttribute(
'tabindex',
'-1',
`the main interactive element is the input (combobox)
focus should not move to the listbox, which is
aria controlled virtually by the input.`
Expand All @@ -93,9 +92,8 @@ module('select-box/options', function (hooks) {
</SelectBox>
</template>);

assert.dom('.select-box__options').hasAttribute(
assert.dom('.select-box__options').doesNotHaveAttribute(
'tabindex',
'-1',
`the main interactive element is the trigger (combobox)
focus should not move to the listbox (options element), which is
aria controlled virtually by the trigger`
Expand Down

0 comments on commit e66847d

Please sign in to comment.