From bcf57df78188ecf0347b6869f17cbf787471b7d4 Mon Sep 17 00:00:00 2001 From: Andrey Yamanov Date: Mon, 27 Jan 2025 11:52:01 +0100 Subject: [PATCH] chore: update cypress config (#9142) --- packages/cubejs-testing/cypress.config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/cubejs-testing/cypress.config.ts b/packages/cubejs-testing/cypress.config.ts index 37804f1a7ab45..17efe04102921 100644 --- a/packages/cubejs-testing/cypress.config.ts +++ b/packages/cubejs-testing/cypress.config.ts @@ -19,4 +19,7 @@ export default defineConfig({ baseUrl: 'http://localhost:3080', specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}', }, -}) + // set optimal values for the number of tests kept in memory + numTestsKeptInMemory: 10, + experimentalMemoryManagement: true, +});