Adding retries capabilities
Tests in Cypress run mode will retry up to 2 times (Beneficial for the smoke build flakey tests) Tests in Cypress open mode will not retry (more ideal for local testing)
This commit is contained in:
parent
c2beb5926b
commit
60e2f7e4ba
|
@ -7,5 +7,9 @@
|
|||
"WORKER_PORT": "4200",
|
||||
"JWT_SECRET": "test",
|
||||
"HOST_IP": ""
|
||||
},
|
||||
"retries": {
|
||||
"runMode": 2,
|
||||
"openMode": 0
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue