From 30dac29cb003dec7dd13e50413b83ecfbfd49a70 Mon Sep 17 00:00:00 2001 From: Winston Liu Date: Sun, 23 Jul 2023 00:27:50 -0700 Subject: [PATCH] Mark mobile Safari as slow --- tests/e2e/App.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/e2e/App.test.ts b/tests/e2e/App.test.ts index 5b4ca16..a1ee714 100644 --- a/tests/e2e/App.test.ts +++ b/tests/e2e/App.test.ts @@ -159,7 +159,9 @@ test.describe("Accessibility", () => { expect(violations.length).toBe(0); }); - test("Solutions are accessible", async ({ page }) => { + test("Solutions are accessible", async ({ page }, { project }) => { + test.slow(project.name === "Mobile Safari", "Slow in mobile Safari"); + await page.goto("/"); for (let i = 0; i < 5; i++) {