mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 18:47:15 -07:00
Added automation
This commit is contained in:
parent
57dfbd6748
commit
d31da0a249
44 changed files with 7013 additions and 6 deletions
20
tests/cypress/config/demo.json
Normal file
20
tests/cypress/config/demo.json
Normal 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"
|
||||
}
|
||||
}
|
25
tests/cypress/config/regression.json
Normal file
25
tests/cypress/config/regression.json
Normal 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"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue