From 512c30b1f68e6878fdf420d04784b37f54f7b448 Mon Sep 17 00:00:00 2001 From: Tim van der Meij Date: Sun, 7 Sep 2025 19:29:03 +0200 Subject: [PATCH] Unskip the `must check that date entered by the user is consistent` scripting integration test for Firefox Bug 1978027 has been fixed upstream 10 days ago, so this integration test can be enabled for Firefox too now that it passed with recent Nightly versions. --- test/integration/scripting_spec.mjs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/integration/scripting_spec.mjs b/test/integration/scripting_spec.mjs index 84f5666fd..70a9533c9 100644 --- a/test/integration/scripting_spec.mjs +++ b/test/integration/scripting_spec.mjs @@ -2463,13 +2463,6 @@ describe("Interaction", () => { it("must check that date entered by the user is consistent", async () => { await Promise.all( pages.map(async ([browserName, page]) => { - if (browserName === "firefox") { - // Skip the test for Firefox as it doesn't support timezone - // emulation for WebDriver BiDi yet. - // TODO: Remove this check once bug 1978027 is fixed. - return; - } - await waitForScripting(page); await page.emulateTimezone("Pacific/Honolulu");