mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Security Solution] Increase default Cypress timeouts (#144722)
## Summary The default timeouts are increased: - Locally: from 20s to 60s - On CI: from 120s to 150s Reasoning: - Locally for some of the devs many tests fail with timeouts pretty often and pretty randomly. - It looks like on CI flakiness has increased recently.
This commit is contained in:
parent
21326b1eae
commit
ce9a253796
2 changed files with 6 additions and 6 deletions
|
@ -9,9 +9,9 @@ import { defineConfig } from 'cypress';
|
|||
|
||||
// eslint-disable-next-line import/no-default-export
|
||||
export default defineConfig({
|
||||
defaultCommandTimeout: 20000,
|
||||
execTimeout: 20000,
|
||||
pageLoadTimeout: 20000,
|
||||
defaultCommandTimeout: 60000,
|
||||
execTimeout: 60000,
|
||||
pageLoadTimeout: 60000,
|
||||
screenshotsFolder: '../../../target/kibana-security-solution/cypress/screenshots',
|
||||
trashAssetsBeforeRuns: false,
|
||||
video: false,
|
||||
|
|
|
@ -9,9 +9,9 @@ import { defineConfig } from 'cypress';
|
|||
|
||||
// eslint-disable-next-line import/no-default-export
|
||||
export default defineConfig({
|
||||
defaultCommandTimeout: 120000,
|
||||
execTimeout: 120000,
|
||||
pageLoadTimeout: 120000,
|
||||
defaultCommandTimeout: 150000,
|
||||
execTimeout: 150000,
|
||||
pageLoadTimeout: 150000,
|
||||
numTestsKeptInMemory: 0,
|
||||
retries: {
|
||||
runMode: 2,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue