From c7b35ecd78ee36e736f31449a1c3343e430af194 Mon Sep 17 00:00:00 2001 From: Tim van der Meij Date: Sun, 19 Jan 2025 19:04:06 +0100 Subject: [PATCH] Enable a disabled stamp editor integration test in Chrome Puppeteer recently got updated to version 24.0.0+, so we're past version 23.9.1- where the integration test failed before and we can enable it again now that it passes in Chrome. --- test/integration/stamp_editor_spec.mjs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/test/integration/stamp_editor_spec.mjs b/test/integration/stamp_editor_spec.mjs index 7118534c9..ae546cad4 100644 --- a/test/integration/stamp_editor_spec.mjs +++ b/test/integration/stamp_editor_spec.mjs @@ -1621,12 +1621,7 @@ describe("Stamp Editor", () => { it("must check that the annotation isn't unselected when an other finger taps on the screen", async () => { // Run sequentially to avoid clipboard issues. - for (const [browserName, page] of pages) { - if (browserName === "chrome") { - // TODO: remove this check when puppeteer supports multiple touch - // events (it works in v23.9.1). - return; - } + for (const [, page] of pages) { await switchToStamp(page); await copyImage(page, "../images/firefox_logo.png", 0);