mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[APM] Fix cypress memory issue due to log panel (#167623)
## Summary Recent [EUI bump](https://github.com/elastic/kibana/pull/166868) from v88.3.0 to v88.5.0 increased the memory usage significantly. Due to which Cypress Tests started failing due to browser crashing with memory limits. EUI team has been informed about this. As reverting EUI is not a simple change, disabling the Cypress Log panel solves the problem for now. Details can be found [here](https://github.com/cypress-io/cypress/issues/27415#issuecomment-1668073106) This brings change to how we run the Cypress Test in Head Mode ## Before  ## After 
This commit is contained in:
parent
567a6de977
commit
2047a5556a
2 changed files with 2 additions and 1 deletions
|
@ -123,7 +123,7 @@ describe('Agent configuration', () => {
|
|||
.click({ force: true })
|
||||
.type('All');
|
||||
|
||||
cy.get('mark').contains('All').click();
|
||||
cy.get('mark').contains('All').click({ force: true });
|
||||
cy.contains('Next step').click();
|
||||
cy.contains('Service name All');
|
||||
cy.contains('Environment All');
|
||||
|
|
|
@ -76,6 +76,7 @@ export async function cypressTestRunner({ getService }: FtrProviderContext) {
|
|||
ES_NODE: esNode,
|
||||
ES_REQUEST_TIMEOUT: esRequestTimeout,
|
||||
TEST_CLOUD: process.env.TEST_CLOUD,
|
||||
NO_COMMAND_LOG: 1, // Temp fix, With Cypress 13, this might not be required https://github.com/elastic/kibana/pull/162383
|
||||
},
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue