From 2c089f7ba651c2cca8271da9b49bce8181001416 Mon Sep 17 00:00:00 2001 From: jNullj <15849761+jNullj@users.noreply.github.com> Date: Sat, 18 Jan 2025 20:09:38 +0200 Subject: [PATCH] fix: cypress video (#10829) Fixes #10828 Cypress v13 had breaking changes where the default value for video and videoCompression changed from true to false. This re-adds video using the cypress config as mentioned in the migration [docs](https://docs.cypress.io/app/references/migration-guide#Migrating-to-Cypress-130) --- cypress.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cypress.config.js b/cypress.config.js index 4678415ba8f3a..beead514b00c3 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -10,4 +10,6 @@ export default defineConfig({ baseUrl: 'http://localhost:3000', supportFile: false, }, + video: true, + videoCompression: true, })