From 0237851aa17ff2a5f5fdba5ff00685970c0fed2b Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Thu, 8 Dec 2022 09:01:33 -0500 Subject: [PATCH] fix failing test --- src/components/select/select.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/select/select.test.ts b/src/components/select/select.test.ts index 47439f553..48d9f7c0a 100644 --- a/src/components/select/select.test.ts +++ b/src/components/select/select.test.ts @@ -89,6 +89,7 @@ describe('', () => { el.addEventListener('sl-input', inputHandler); el.focus(); + await el.updateComplete; await sendKeys({ press: ' ' }); // open the dropdown await aTimeout(200); // wait for the dropdown to open await sendKeys({ press: 'ArrowDown' }); // select the first option