From 2643e6a82308c77fd4fbef829921782e7d85381c Mon Sep 17 00:00:00 2001 From: Tim van der Meij Date: Sun, 12 Dec 2021 16:10:13 +0100 Subject: [PATCH] Disable failing print actions integration test in Firefox Once the upstream bug is fixed it can be enabled again because it's causing way too much noise now. This is tracked in issue #14293. Note that I deliberately added a new block so we can easily remove it later on and because the other block is about another bug. --- test/integration/scripting_spec.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/integration/scripting_spec.js b/test/integration/scripting_spec.js index d3da48d67..43594d577 100644 --- a/test/integration/scripting_spec.js +++ b/test/integration/scripting_spec.js @@ -353,6 +353,9 @@ describe("Interaction", () => { it("must execute WillPrint and DidPrint actions", async () => { await Promise.all( pages.map(async ([browserName, page]) => { + if (browserName === "firefox") { + pending("Disabled in Firefox, because of bug 1741698."); + } if (process.platform === "win32" && browserName === "firefox") { pending("Disabled in Firefox on Windows, because of bug 1662471."); }