From 938430be5b57056a4d0d778bc1c68f02d71f5535 Mon Sep 17 00:00:00 2001 From: Tim van der Meij Date: Sun, 13 Apr 2025 15:53:53 +0200 Subject: [PATCH] Remove workaround from the "must convert input to uppercase" scripting integration test It's no longer necessary after commit 1c73e52 that caused the document to be closed properly between tests, and this therefore partly reverts commit 973b67f. --- 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 7ed4dafb9..ed4543555 100644 --- a/test/integration/scripting_spec.mjs +++ b/test/integration/scripting_spec.mjs @@ -1197,13 +1197,6 @@ describe("Interaction", () => { await page.waitForFunction( `${getQuerySelector("27R")}.value === "HEAO "` ); - - // The typing actions in the first textbox caused sandbox events to be - // queued. We don't close the document between tests, so we have to - // flush them here, by clicking the second textbox, so they don't leak - // through to the following test. - await page.click(getSelector("28R")); - await waitForSandboxTrip(page); }) ); });