From faf87f5b5c130af3d9c43a467b059bd94924649c Mon Sep 17 00:00:00 2001 From: Andrey Yamanov Date: Mon, 27 Jan 2025 11:06:20 +0100 Subject: [PATCH] chore: update cypress config --- 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, +});