Skip to content

Commit ce5e4da

Browse files
authored
Update table-selectable.spec.js
1 parent 3102353 commit ce5e4da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ describe('table row select', () => {
2929
const $rows = wrapper.findAll('tbody > tr')
3030
expect($rows.length).toBe(4)
3131
// Doesn't have aria-selected attribute on all TRs
32-
expect($rows.wrapper.is('tr[aria-selected]')).toBe(false)
32+
expect($rows.is('tr[aria-selected]')).toBe(false)
3333
// Doesn't have tabindex attribute on all TRs
34-
expect($rows.wrapper.is('tr[tabindex]')).toBe(false)
34+
expect($rows.is('tr[tabindex]')).toBe(false)
3535
})
3636

3737
it('select mode single works', async () => {

0 commit comments

Comments
 (0)