Skip to content

Commit 82d6bc2

Browse files
authored
Update table-selectable.spec.js
1 parent b32f355 commit 82d6bc2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/table/table-selectable.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,8 @@ describe('table row select', () => {
561561
// Does not emit a row-selected event
562562
expect(wrapper.emitted('row-selected').length).toBe(1)
563563
$rows = wrapper.findAll('tbody > tr')
564+
// Should remove tabindex and aria-selected attributes
564565
expect($rows.is('[tabindex]')).toBe(false)
565-
expect($rows.is('[aria-selected')).toBe(false)
566+
expect($rows.is('[aria-selected]')).toBe(false)
566567
})
567568
})

0 commit comments

Comments
 (0)