From 4aa5e9c1f23fe9bc993ae2bf074fe0a501cfb6ba Mon Sep 17 00:00:00 2001 From: Sebi <44837861+klaarseSICKAG@users.noreply.github.com> Date: Mon, 25 Mar 2024 16:47:45 +0100 Subject: [PATCH] Fixed Firefox select-test (#1921) * - added firefox as a test target - fixed failing firefox select-test * reverted the firefox test target, since the color-picker test still fails --- 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 0f80a7e6..ce8576df 100644 --- a/src/components/select/select.test.ts +++ b/src/components/select/select.test.ts @@ -462,7 +462,7 @@ describe('', () => { await select.updateComplete; expect(select.value).to.equal('option-3'); - setTimeout(() => clickOnElement(resetButton)); + setTimeout(() => resetButton.click()); await oneEvent(form, 'reset'); await select.updateComplete; expect(select.value).to.equal('option-1');