Skip to content

Added Cypress QS specific versioning #1128

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- Use npm ci in e2e-cypress quickstarter & Better TypeScript support in e2e-cypress quickstarter ([#1114](https://github.com/opendevstack/ods-quickstarters/pull/1114))
- e2e-cypress get rid of additional chrome installation and switch to edge for pdf generation ([#1112](https://github.com/opendevstack/ods-quickstarters/pull/1112))
- Fix for the integration of the Python Quickstarter and Zephyr ODS integration ([#1125](https://github.com/opendevstack/ods-quickstarters/pull/1125))
- Added e2e-cypress specific versioning and pinned dependencies ([#1128](https://github.com/opendevstack/ods-quickstarters/pull/1128))

### Fixed

Expand Down
8 changes: 5 additions & 3 deletions e2e-cypress/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# End-to-end tests with Cypress (e2e-cypress)

Documentation is located in our [official documentation](https://www.opendevstack.org/ods-documentation/ods-quickstarters/latest/index.html)
This quickstarter tracks its own version in the files/package.json file. Make sure to update it accordingly.

Please update documentation in the [antora page directory](https://github.com/opendevstack/ods-quickstarters/tree/master/docs/modules/ROOT/pages)
Documentation is located in our [official documentation](https://www.opendevstack.org/ods-documentation/opendevstack/latest/quickstarters/e2e-cypress.html)

Tested thru [automated tests](../tests/e2e-cypress)
Please update documentation in the [antora page directory](https://github.com/opendevstack/ods-quickstarters/tree/master/docs/modules/quickstarters/pages)

Tested thru [automated tests](./testdata)
28 changes: 14 additions & 14 deletions e2e-cypress/files/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "e2e-cypress",
"version": "0.0.0",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "npm run cypress:open",
Expand All @@ -22,18 +22,18 @@
},
"private": true,
"devDependencies": {
"@types/node": "^22.4.1",
"cypress": "^13.13.1",
"cypress-multi-reporters": "^1.6.4",
"junit-report-merger": "^7.0.0",
"mocha-junit-reporter": "^2.2.1",
"mochawesome": "^7.1.3",
"npm-run-all": "^4.1.5",
"otplib": "^12.0.1",
"puppeteer-core": "^24.4.0",
"rimraf": "^6.0.1",
"sharp": "^0.33.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
"@types/node": "22.4.1",
"cypress": "13.13.1",
"cypress-multi-reporters": "1.6.4",
"junit-report-merger": "7.0.0",
"mocha-junit-reporter": "2.2.1",
"mochawesome": "7.1.3",
"npm-run-all": "4.1.5",
"otplib": "12.0.1",
"puppeteer-core": "24.4.0",
"rimraf": "6.0.1",
"sharp": "0.33.5",
"ts-node": "10.9.2",
"typescript": "5.5.4"
}
}