Skip to content

Commit

Permalink
Merge pull request #767 from aablatov/tests/cypress-02-1
Browse files Browse the repository at this point in the history
tests/cypress-02-1. disabling video
  • Loading branch information
Areso committed Mar 1, 2023
2 parents 26ff720 + f8417c6 commit 123b247
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions tests/tests_cypress/E2E/cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export default ({
e2e: {
baseUrl: 'http://localhost:8080',
setupNodeEvents(on, config) {
video: false;
// implement node event listeners here
},
},
Expand Down
2 changes: 1 addition & 1 deletion tests/tests_cypress/E2E/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
},
"type": "module",
"scripts": {
"start": "npx cypress run",
"start": "npx cypress open",
"test:integration": "docker-compose --file docker-compose.cypress.yml up --exit-code-from cypress --build cypress",
"clean:reports": "rm -rf cypress/reports/",
"test": "npm run clean:reports && cypress run",
Expand Down
3 changes: 2 additions & 1 deletion tests/tests_cypress/validateHTML/cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import htmlvalidate from "cypress-html-validate/plugin";
export default {
e2e: {
baseUrl: 'http://localhost:8080',
setupNodeEvents(on, config) {
setupNodeEvents(on, config) {
video: false;
htmlvalidate.install(on);
// implement node event listeners here
},
Expand Down
2 changes: 1 addition & 1 deletion tests/tests_cypress/validateHTML/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
},
"type": "module",
"scripts": {
"start": "npx cypress run",
"start": "npx cypress open",
"test:integration": "docker-compose --file docker-compose.cypress.yml up --exit-code-from cypress --build cypress",
"clean:reports": "rm -rf cypress/reports/",
"test": "npm run clean:reports && cypress run",
Expand Down

0 comments on commit 123b247

Please sign in to comment.