Skip to content
Snippets Groups Projects
Select Git revision
  • 3db1ed7d5f83c996b770ff00f3fa03f65f8dfc85
  • main default protected
2 results

a11y-2.spec.js

Blame
  • a11y-2.spec.js 313 B
    import { test, expect } from "@playwright/test";
    import matchers from 'expect-axe-playwright'
    
    expect.extend(matchers)
    
    test('Startseite', async ({ page }) => {
      await page.goto('https://www.grochtdreis.de/index.html');
      // await page.goto('https://www.swr.de/index.html');
      await expect(page).toPassAxe()
    });