Select Git revision
a11y-2.spec.js
-
Jens Grochtdreis authoredJens Grochtdreis authored
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()
});