Skip to content

Commit

Permalink
skip matplotlib test
Browse files Browse the repository at this point in the history
  • Loading branch information
bugzpodder committed Sep 24, 2023
1 parent 1da4b3b commit 7cca39d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tests/autoimport.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ test("main thread success", async ({ page }) => {
});

test("worker success", async ({ page }) => {
test.skip(process.env.CI);
test.skip(Boolean(process.env.CI));
await page.goto("/examples/Worker/autoimport.html");
await expect(page.getByTestId("out").locator("css=img")).toHaveCount(1);
await expect(page).toHaveScreenshot("seaborn.png");
Expand Down
1 change: 1 addition & 0 deletions tests/matplotlib.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ test("restricted matplotlib success", async ({ page }) => {
});

test("restricted worker success", async ({ page }) => {
test.skip(Boolean(process.env.CI));
await page.goto("/examples/Worker/matplotlib-restricted.html");
await expect(page.getByTestId("out").locator("css=img")).toHaveCount(1);
await expect(page).toHaveScreenshot("matplotlib.png");
Expand Down

0 comments on commit 7cca39d

Please sign in to comment.