Merge pull request #14367 from timvandermeij/integration-tests

Disable failing print actions integration test in Firefox
This commit is contained in:
Tim van der Meij 2021-12-12 16:20:34 +01:00 committed by GitHub
commit e638a84afe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.");
}