From a31d6cf8191ef947a022aaba72c99ba94901ccf8 Mon Sep 17 00:00:00 2001 From: alexm Date: Mon, 10 Feb 2025 12:43:34 +0100 Subject: [PATCH] fix: refs #6695 fix e2e's --- cypress.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cypress.config.js b/cypress.config.js index 7a851c976..87c184dff 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -19,7 +19,8 @@ export default defineConfig({ videosFolder: 'test/cypress/videos', downloadsFolder: 'test/cypress/downloads', video: false, - specPattern: 'test/cypress/integration/route/routeList.spec.js', + specPattern: 'test/cypress/integration/**/*.spec.js', + // specPattern: 'test/cypress/integration/route/routeList.spec.js', experimentalRunAllSpecs: true, watchForFileChanges: true, reporter: 'cypress-mochawesome-reporter',