Added automation

This commit is contained in:
tidusjar 2021-03-09 15:01:43 +00:00
commit d31da0a249
44 changed files with 7013 additions and 6 deletions

View file

@ -0,0 +1,20 @@
{
"$schema": "https://on.cypress.io/cypress.schema.json",
"supportFile": "cypress/support/index.ts",
"baseUrl": "https://app.ombi.io/",
"integrationFolder": "cypress/tests",
"testFiles": "**/*.spec.ts*",
"retries": {
"runMode": 2,
"openMode": 1
},
"watchForFileChanges": true,
"chromeWebSecurity": false,
"viewportWidth": 2880,
"viewportHeight": 2160,
"ignoreTestFiles": ["**/snapshots/*"],
"env": {
"username": "beta",
"password": "beta"
}
}

View file

@ -0,0 +1,25 @@
{
"$schema": "https://on.cypress.io/cypress.schema.json",
"supportFile": "cypress/support/index.ts",
"integrationFolder": "cypress/tests",
"testFiles": "**/*.spec.ts*",
"retries": {
"runMode": 2,
"openMode": 1
},
"watchForFileChanges": true,
"chromeWebSecurity": false,
"viewportWidth": 2880,
"viewportHeight": 2160,
"ignoreTestFiles": ["**/snapshots/*"],
"screenshotOnRunFailure": false,
"video": false,
"reporter": "junit",
"reporterOptions": {
"mochaFile": "results/junit/regression-[hash].xml"
},
"env": {
"username": "beta",
"password": "beta"
}
}