Sfoglia il codice sorgente

feat: enable detailed report

Konstantinos Kaloutas 3 anni fa
parent
commit
6bf5c441d9
1 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  1. 3 1
      e2e-tests/accessibility.spec.ts

+ 3 - 1
e2e-tests/accessibility.spec.ts

@@ -6,5 +6,7 @@ import { createRandomPage } from './utils'
 test('check a11y for the whole page', async ({ page }) => {
     await injectAxe(page)
     await createRandomPage(page)
-    await checkA11y(page)
+    await checkA11y(page, null, {
+        detailedReport: true,
+    })
 })