Skip to content

Commit 8942bd1

Browse files
committed
Add numTestsKeptInMemory to Cypress config
This commit modifies the Cypress configuration file to include the numTestsKeptInMemory option set to 10. - This setting helps improve test runner performance and memory usage by limiting how many test results are kept in memory during test execution. - No other functional changes or features were added.
1 parent 6d012b1 commit 8942bd1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/desktop/cypress.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ export default defineConfig({
1111
baseUrl: 'http://localhost:1420',
1212
supportFile: 'cypress/e2e/support/index.ts'
1313
},
14-
experimentalWebKitSupport: true
14+
experimentalWebKitSupport: true,
15+
numTestsKeptInMemory: 10
1516
});

0 commit comments

Comments
 (0)