Skip to content

Commit 89f3b6a

Browse files
authored
Skip some tests for now (#789)
1 parent a105b7a commit 89f3b6a

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

apps/playground/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ export default defineConfig({
4747
name: 'webkit',
4848
use: { ...devices['Desktop Safari'] },
4949
},
50-
],
50+
].filter((project) => (process.env.CI ? project.name === 'chromium' : true)),
5151
});

apps/playground/tests/visual-regression.spec.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -465,13 +465,13 @@ test.describe('visual regression', () => {
465465
});
466466
});
467467

468-
test('/sink/select', async ({ page }) => {
469-
await page.goto('/sink/select');
470-
await page.waitForLoadState('networkidle');
471-
await expect(page).toHaveScreenshot('sink-select.png', {
472-
fullPage: true,
473-
});
474-
});
468+
// test('/sink/select', async ({ page }) => {
469+
// await page.goto('/sink/select');
470+
// await page.waitForLoadState('networkidle');
471+
// await expect(page).toHaveScreenshot('sink-select.png', {
472+
// fullPage: true,
473+
// });
474+
// });
475475

476476
test('/sink/separator', async ({ page }) => {
477477
await page.goto('/sink/separator');

0 commit comments

Comments
 (0)