Skip to content

Commit

Permalink
Merge branch 'master' of github.com:roicarrera/ods-quickstarters
Browse files Browse the repository at this point in the history
  • Loading branch information
roicarrera committed Aug 19, 2024
2 parents 5784e6b + d128c66 commit ebcd46a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
- Update Rust Axum Quickstarter ([#1024](https://github.com/opendevstack/ods-quickstarters/pull/1024))
- Gitleaks docs fix and update ([#1028](https://github.com/opendevstack/ods-quickstarters/issues/1028))
- Enable OpenSSL vendored compilation for Rust Jenkins Agent ([#1026](https://github.com/opendevstack/ods-quickstarters/pull/1026))
- Added custom reporter to Cypress Quickstarter and updated dependencies versions ([#1034](https://github.com/opendevstack/ods-quickstarters/pull/1034))
- Added custom reporter to Cypress Quickstarter and update dependencies ([#1034](https://github.com/opendevstack/ods-quickstarters/pull/1034))

### Added

Expand Down
4 changes: 2 additions & 2 deletions e2e-cypress/files/support/e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ beforeEach(function() {
afterEach(function() {
const testName = this.currentTest.fullTitle().replace(/ /g, '_');
const fileName = `system-output-${testName}.txt`;
const Filepath = `cypress/results/${fileName}`;
const filePath = `cypress/results/${fileName}`;

cy.writeFile(Filepath, consoleLogs.join('\n'));
cy.writeFile(filePath, consoleLogs.join('\n'));

consoleLogs = [];
})

0 comments on commit ebcd46a

Please sign in to comment.