From b46e1b3fec9a44149b3419986f38f4825a0fb78c Mon Sep 17 00:00:00 2001 From: jorgep Date: Thu, 13 Mar 2025 09:44:52 +0100 Subject: [PATCH] ci: refs #8581 change spec parallel --- test/cypress/cypressParallel.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cypress/cypressParallel.sh b/test/cypress/cypressParallel.sh index b5edf2215..ece574d66 100644 --- a/test/cypress/cypressParallel.sh +++ b/test/cypress/cypressParallel.sh @@ -1,6 +1,6 @@ #!/bin/bash -find 'test/cypress/integration' \ +find 'test/cypress/integration/invoiceIn/*Descriptor.spec.js' \ -mindepth 1 \ -maxdepth 1 \ -type d | \ @@ -8,7 +8,7 @@ xargs -P "$1" -I {} sh -c ' echo "🔷 {}" && xvfb-run -a cypress run \ --headless \ - --spec "[test/cypress/integration/invoiceIn/*Descriptor.vue]" \ + --spec "[test/cypress/integration/*Descriptor.spec.js]" \ --quiet \ > /dev/null '