test: Cypress env for fat container (#11792)

* added cypress_fat.json as config

* Create cypress_fat.json
This commit is contained in:
yatinappsmith 2022-03-14 10:00:13 +05:30 committed by GitHub
parent 6199eada0a
commit ef6be16f74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View File

@ -595,6 +595,7 @@ jobs:
record: true
install: false
parallel: true
config-file: cypress_fat.json
group: "Electrons on Github Action Fat Container"
spec: "cypress/integration/Smoke_TestSuite_Fat/**/*"
working-directory: app/client
@ -627,6 +628,7 @@ jobs:
record: true
install: false
parallel: true
config-file: cypress_fat.json
group: "Electrons on Github Action"
spec: ${{ env.failed_spec_env }}
working-directory: app/client

View File

@ -0,0 +1,28 @@
{
"baseUrl": "http://localhost/",
"defaultCommandTimeout": 20000,
"requestTimeout": 21000,
"pageLoadTimeout": 20000,
"video": true,
"videoUploadOnPasses": false,
"reporter": "mochawesome",
"reporterOptions": {
"reportDir": "results",
"overwrite": false,
"html": true,
"json": false
},
"ignoreTestFiles": [
"**/Smoke_TestSuite/Application/PgAdmin_spec*.js",
"**/Smoke_TestSuite/ClientSideTests/DisplayWidgets/Table_Filter_spec*.js",
"**/Smoke_TestSuite/ClientSideTests/Onboarding/FirstTimeUserOnboarding_spec*.js",
"**/Smoke_TestSuite/ClientSideTests/LayoutValidation/AppPageLayout.spec.js"
],
"chromeWebSecurity": false,
"viewportHeight": 900,
"viewportWidth": 1400,
"retries": {
"runMode": 2,
"openMode": 0
}
}