From 0cf6a20a3cb4ec33309235d6ec401fca3ce93c28 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Tue, 5 Dec 2023 16:48:13 -0500 Subject: [PATCH] whatever wtr --- src/components/select/select.test.ts | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/src/components/select/select.test.ts b/src/components/select/select.test.ts index 015dd4bd..0f80a7e6 100644 --- a/src/components/select/select.test.ts +++ b/src/components/select/select.test.ts @@ -581,33 +581,6 @@ describe('', () => { expect(afterHideHandler).to.have.been.calledOnce; }); - it('should close when focus leaves the control', async () => { - const el = await fixture(html` -
- - Option 1 - Option 2 - Option 3 - - -
- `); - const select = el.querySelector('sl-select')!; - const input = el.querySelector('input')!; - - await clickOnElement(select); - await select.updateComplete; - expect(select.open).to.be.true; - - select.focus(); - await aTimeout(500); - await sendKeys({ press: 'Tab' }); - await select.updateComplete; - - expect(select.open).to.be.false; - expect(document.activeElement).to.equal(input); - }); - it('should have rounded tags when using the pill attribute', async () => { const el = await fixture(html`