Skip to content

Commit

Permalink
:dependabot: Bump cypress-terminal-report from 5.3.12 to 6.0.0 in /src/test/e2e
Browse files Browse the repository at this point in the history
* :dependabot: Bump cypress-terminal-report in /src/test/e2e

Bumps [cypress-terminal-report](https://github.com/archfz/cypress-terminal-report) from 5.3.12 to 6.0.0.
- [Commits](https://github.com/archfz/cypress-terminal-report/commits)

---
updated-dependencies:
- dependency-name: cypress-terminal-report
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* e2e: log time since test start in cypress output

* e2e: always print logs to terminal

not only for failing tests

* e2e: rename cypress specs folder

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JKatzwinkel <JKatzwinkel@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and JKatzwinkel authored Feb 13, 2024
1 parent 9de3905 commit 82fc974
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 10 deletions.
4 changes: 3 additions & 1 deletion src/test/e2e/cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ module.exports = defineConfig(
{
e2e: {
setupNodeEvents(on) {
require('cypress-terminal-report/src/installLogsPrinter')(on)
require('cypress-terminal-report/src/installLogsPrinter')(
on, { printLogsToConsole: 'always' }
)
},
baseUrl: "http://127.0.0.1:8080",
specPattern: "cypress/**/*.spec.js",
Expand Down
4 changes: 3 additions & 1 deletion src/test/e2e/cypress/support/e2e.js
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
require('cypress-terminal-report/src/installLogsCollector')()
require('cypress-terminal-report/src/installLogsCollector')(
{ commandTimings: 'seconds' }
)
File renamed without changes.
14 changes: 7 additions & 7 deletions src/test/e2e/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/test/e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"devDependencies": {
"cypress": "^13.6.4",
"cypress-terminal-report": "^5.3.12",
"cypress-terminal-report": "^6.0.0",
"eslint-plugin-cypress": "^2.15.1"
},
"scripts": {
Expand Down

0 comments on commit 82fc974

Please sign in to comment.