diff --git a/Jenkinsfile b/Jenkinsfile index bd478f7892c..275e960df48 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 7d630f47906..b299fe46bd5 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