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()
});