diff --git a/.gitignore b/.gitignore index c6350d1d6..fbb9e9f20 100644 --- a/.gitignore +++ b/.gitignore @@ -15,7 +15,7 @@ tests/jena-fuseki* .DS_Store .phpunit.result.cache .php-cs-fixer.cache -cypress/videos/ -cypress/screenshots/ +tests/cypress/videos/ +tests/cypress/screenshots/ /.idea *.swp diff --git a/cypress.config.js b/cypress.config.js index d502f0ab5..42ea2a54f 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -22,6 +22,8 @@ module.exports = defineConfig({ 'tests/cypress/accessibility/**/*.cy.js', 'tests/cypress/template/**/*.cy.js', 'tests/cypress/e2e/**/*.cy.js' - ] + ], + screenshotsFolder: 'tests/cypress/screenshots', + videosFolder: 'tests/cypress/videos' } }) diff --git a/tests/cypress/support/accessibility.js b/tests/cypress/support/accessibility.js index ecc58cc90..70bcb76f9 100644 --- a/tests/cypress/support/accessibility.js +++ b/tests/cypress/support/accessibility.js @@ -39,12 +39,6 @@ function getConfigurationForCLITests () { } function getConfigurationForGUITests () { return it('Check for possible accessibility errors at all logging levels set below in accordance with WCAG AA requirements', () => { - checkA11y({ - includedImpacts: ['minor', 'moderate', 'serious', 'critical'], - runOnly: { - type: 'tag', - values: ['wcag2aa'] - } - }) + checkA11y(null) }) }