From 1b9b80a9b281af07257de8ef2789055d816ab0db Mon Sep 17 00:00:00 2001 From: Luka Trovic Date: Mon, 29 Sep 2025 14:45:21 +0200 Subject: [PATCH] chore: enable experimentalMemoryManagement for cypress test Signed-off-by: Luka Trovic --- cypress.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cypress.config.js b/cypress.config.js index e619c6713..80fc79d2d 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -12,5 +12,6 @@ module.exports = defineConfig({ }, baseUrl: 'http://nextcloud.local/index.php', specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}', + experimentalMemoryManagement: true, }, })