Skip to content

Commit c2d204f

Browse files
authored
test: cleanup outdated checkbox-group focus test (#8654)
1 parent 044f893 commit c2d204f

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

packages/checkbox-group/test/checkbox-group.test.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -302,15 +302,6 @@ describe('vaadin-checkbox-group', () => {
302302
expect(checkboxes[0].hasAttribute('focused')).to.be.false;
303303
expect(group.hasAttribute('focused')).to.be.false;
304304
});
305-
306-
it('should not steal focus from currently focused element', () => {
307-
const focusInput = document.createElement('input');
308-
document.body.appendChild(focusInput);
309-
focusInput.focus();
310-
group.value = '1';
311-
expect(document.activeElement).to.be.equal(focusInput);
312-
document.body.removeChild(focusInput);
313-
});
314305
});
315306

316307
describe('has-value attribute', () => {

0 commit comments

Comments
 (0)