PromucFlow_constructor/app/client/cypress.json
Rajat Agrawal 2a60ecf482
Disable hot reloading of cypress tests (#22560)
Disabling hot reloading would disable running of cypress tests on its
own whenever anything is changed in the current test case.

I think this might be helpful for scenarios when a developer is
writing/completing their test case and don't intend to re-run the test
until they have completed their code. This would prevent unnecessary
test runs and keep the memory footprint low.

A lower foot print would help in reduced flakiness when an actual test
run is required.

If a developer wants to re-run the test, they have to switch cypress app
nonetheless, and can press the refresh button at that time.

Please suggest if this would appropriate as a team wide change.
2023-04-21 15:08:06 +05:30

25 lines
513 B
JSON

{
"baseUrl": "https://dev.appsmith.com/",
"watchForFileChanges" : false,
"defaultCommandTimeout": 20000,
"requestTimeout": 21000,
"responseTimeout": 20000,
"pageLoadTimeout": 30000,
"videoUploadOnPasses": false,
"videoCompression": false,
"numTestsKeptInMemory": 10,
"reporterOptions": {
"reportDir": "results",
"overwrite": false,
"html": true,
"json": false
},
"chromeWebSecurity": false,
"viewportHeight": 1100,
"viewportWidth": 1400,
"retries": {
"runMode": 1,
"openMode": 0
}
}