Add cypress support (#1951)
* Adding cypress support for running tests in the CI. Modifications: - .travis.yml: adding command for run testin via cypress - Dockerfile.ci: addin install necessary package for correct cypress works. Adding install cypress via npm. - docker-compose.ci.yml: Starting necessary docker containers for cypress testing. - tests/cypress.json: Cypress configuration file - tests/cypress/integration/auth_page.js: little bit fix. - CONTRIBUTING.md: add documentation how to run cypress tests locally * Add documentation how to run cypress tests locally. Remove wait() from auth_page.js. * Add run cypress in CI with the different config file cypress_ci.json Update CONTRIBUTING.md. Co-authored-by: Dmitry Kruchinin <dmitryx.kruchinin@intel.com>main
parent
0de65e7d98
commit
6eb777a935
@ -0,0 +1,3 @@
|
||||
{
|
||||
"baseUrl": "http://localhost:8080"
|
||||
}
|
||||
@ -0,0 +1,4 @@
|
||||
{
|
||||
"video": false,
|
||||
"baseUrl": "http://cvat_ui"
|
||||
}
|
||||
Loading…
Reference in New Issue