You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2024/03/07 22:43:06 UTC

(superset) branch cypress-memory-management updated: fix(cypress): enabling Cypress experimentalMemoryManagement setting

This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a commit to branch cypress-memory-management
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/cypress-memory-management by this push:
     new d8a571e223 fix(cypress): enabling Cypress experimentalMemoryManagement setting
d8a571e223 is described below

commit d8a571e2232053d39014175ce877bb827ca73f36
Author: Evan Rusackas <ev...@rusackas.com>
AuthorDate: Thu Mar 7 15:42:51 2024 -0700

    fix(cypress): enabling Cypress experimentalMemoryManagement setting
---
 superset-frontend/cypress-base/cypress.config.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset-frontend/cypress-base/cypress.config.ts b/superset-frontend/cypress-base/cypress.config.ts
index 96b74938ee..78bff3e173 100644
--- a/superset-frontend/cypress-base/cypress.config.ts
+++ b/superset-frontend/cypress-base/cypress.config.ts
@@ -65,5 +65,6 @@ export default defineConfig({
     baseUrl: 'http://localhost:8088',
     excludeSpecPattern: ['**/*.applitools.test.ts'],
     specPattern: ['cypress/e2e/**/*.{js,jsx,ts,tsx}'],
+    experimentalMemoryManagement: true,
   },
 });