From 066abe4e522cd54e9e5d150a028a8f48ddd7f292 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Thu, 8 Dec 2022 11:16:08 -0500 Subject: [PATCH] wait longer --- src/components/select/select.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/select/select.test.ts b/src/components/select/select.test.ts index 48d9f7c0..b15246df 100644 --- a/src/components/select/select.test.ts +++ b/src/components/select/select.test.ts @@ -91,7 +91,7 @@ describe('', () => { el.focus(); await el.updateComplete; await sendKeys({ press: ' ' }); // open the dropdown - await aTimeout(200); // wait for the dropdown to open + await aTimeout(500); // wait for the dropdown to open await sendKeys({ press: 'ArrowDown' }); // select the first option await el.updateComplete; await sendKeys({ press: 'ArrowDown' }); // select the second option