Skip to content

Commit

Permalink
fix: skip test for angular
Browse files Browse the repository at this point in the history
  • Loading branch information
nmerget committed Apr 29, 2024
1 parent 0b74d00 commit b0fa322
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions showcases/e2e/home/showcase-home.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ test.describe('Home', () => {
});

test('should not have any A11y issues', async ({ page }) => {
const isAngular = process.env.showcase.startsWith('angular');

if (isAngular) {
test.skip();
}

await page.goto('./', {
waitUntil: 'domcontentloaded'
});
Expand Down

0 comments on commit b0fa322

Please sign in to comment.