From 28f2919b4622f323533d7128be35f6602df5ea83 Mon Sep 17 00:00:00 2001 From: alexm Date: Thu, 20 Feb 2025 14:57:44 +0100 Subject: [PATCH] fix: refs #6695 update remove Cypress installation --- Jenkinsfile | 1 - test/cypress/Dockerfile | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index bd478f789..275e960df 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -105,7 +105,6 @@ pipeline { sh 'ls -l' sh 'whoami' sh 'id -u' - sh 'cypress install' sh 'cypress run --browser chromium --spec test/cypress/integration/claim/claimAction.spec.js' } } diff --git a/test/cypress/Dockerfile b/test/cypress/Dockerfile index 7d630f479..b299fe46b 100644 --- a/test/cypress/Dockerfile +++ b/test/cypress/Dockerfile @@ -1,5 +1,5 @@ FROM alexmorenovn/vndev:latest +USER node RUN pnpm install --global cypress@13.6.6 && cypress install - WORKDIR /app