From 686de12146b630de13ff0f97a19437ca0b83cc50 Mon Sep 17 00:00:00 2001 From: Tessa Alexander Date: Wed, 30 Aug 2023 15:28:43 +0100 Subject: [PATCH] Upgrade Cypress --- CHANGELOG | 2 ++ Jenkinsfile.demo | 2 +- Jenkinsfile.prod | 2 +- Jenkinsfile.test | 2 +- README.md | 2 +- cypress.config.js | 2 ++ 6 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 5df9858b..29b404f6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,5 @@ +8.5.2 Upgrade Cypress + 8.5.1 Update Cypress 8.5.0 Apply Python updates diff --git a/Jenkinsfile.demo b/Jenkinsfile.demo index 92c53c6a..5279de84 100644 --- a/Jenkinsfile.demo +++ b/Jenkinsfile.demo @@ -16,7 +16,7 @@ pipeline { stage('Demo: Cypress tests') { agent { docker { - image 'cypress/included:12.17.1' + image 'cypress/included:13.0.0' args '--add-host py-web-d0.epi.bris.ac.uk:172.25.2.76 --entrypoint=""' } } diff --git a/Jenkinsfile.prod b/Jenkinsfile.prod index 3816da9a..dc89860c 100644 --- a/Jenkinsfile.prod +++ b/Jenkinsfile.prod @@ -17,7 +17,7 @@ pipeline { stage('Production: Cypress tests') { agent { docker { - image 'cypress/included:12.17.4' + image 'cypress/included:13.0.0' args '--add-host temmpo.org.uk:172.25.2.104 --entrypoint=""' } } diff --git a/Jenkinsfile.test b/Jenkinsfile.test index 16bd500d..a76e5e72 100644 --- a/Jenkinsfile.test +++ b/Jenkinsfile.test @@ -16,7 +16,7 @@ pipeline { stage('Test: Cypress tests') { agent { docker { - image 'cypress/included:12.17.4' + image 'cypress/included:13.0.0' args '--add-host py-web-t0.epi.bris.ac.uk:172.25.2.77 --entrypoint=""' } } diff --git a/README.md b/README.md index b714b102..7f211346 100644 --- a/README.md +++ b/README.md @@ -202,7 +202,7 @@ NB: Some tests require these environment variables `CREDENTIALS_USR` and `CREDEN Using docker and electron browser - docker run -it -v $PWD:/e2e -w /e2e cypress/included:12.17.4 + docker run -it -v $PWD:/e2e -w /e2e cypress/included:13.0.0 ## Warnings diff --git a/cypress.config.js b/cypress.config.js index ee3b223f..b8b40202 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -5,5 +5,7 @@ module.exports = defineConfig({ baseUrl: 'https://py-web-d0.epi.bris.ac.uk', supportFile: false, specPattern: 'cypress/integration/*.js', + video: true, + videoCompression: false, }, }) \ No newline at end of file