Skip to content

Commit

Permalink
Only skip on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
winstliu committed Jul 23, 2023
1 parent c01572a commit 90b7df5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/e2e/App.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,10 @@ test.describe("Accessibility", () => {
});

test("Solutions are accessible", async ({ page }, { project }) => {
test.skip(project.name === "Mobile Safari", "Times out in mobile Safari");
test.skip(
process.env.CI !== undefined && project.name === "Mobile Safari",
"Times out in mobile Safari on CI"
);

await page.goto("/");

Expand Down

0 comments on commit 90b7df5

Please sign in to comment.