diff --git a/CHANGELOG.md b/CHANGELOG.md index baa0d8756..1b1a216b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/e2e-cypress/files/support/e2e.ts b/e2e-cypress/files/support/e2e.ts index 97624d5da..02c8ec5d6 100644 --- a/e2e-cypress/files/support/e2e.ts +++ b/e2e-cypress/files/support/e2e.ts @@ -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 = []; })