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.
25 lines
513 B
JSON
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
|
|
}
|
|
}
|