diff --git a/CHANGELOG.md b/CHANGELOG.md index c226d922c537beaca755151bbfa68f7210dac8bc..6c2af915e8b690bfab7d4a3731c084ec783612b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), Note that changelog entries are only added when there are changes to the chart (docs changes do not require a new version/changelog entry). --- +## [0.5.13] +### Added +- Fixed bug in mac cypress run command and typo + ## [0.5.12] ### Added - Removing the link from the maintenance badge to fix the formatting in GitLab diff --git a/docs/executing-cypress.md b/docs/executing-cypress.md index bea199dda01275bc54ad402575b5f3ce136dec05..69311aadf66d9f8ea60f77489be3b1a02730a54b 100644 --- a/docs/executing-cypress.md +++ b/docs/executing-cypress.md @@ -37,7 +37,7 @@ Due to the differences in CPU architectures, the existing Cypress container cann docker build . -t cypress:local ``` -#### Linux and Windows Subsystem for Linux (WSL) Requirments +#### Linux and Windows Subsystem for Linux (WSL) Requirements Download the currently used Cypress image to your local workstation: @@ -58,7 +58,8 @@ With the above requirements met you can now clone the [Gluon repository](https:/ For MAC, run the container with the following command using your locally built image: ```bash -docker run -it --entrypoint /bin/bash --rm --mount type=bind,source=$REPO_PATH/{ReplaceWithPackageBeingTested}/$CYPRESS_SLUG=/test/cypress/e2e --mount type=bind,source=$REPO_PATH/gluon/common,target=/test/cypress/common --mount type=bind,source=$VIDEO_PATH,target=/test/cypress/videos --name cypress cypress:local +docker run -it --entrypoint /bin/bash --rm --mount type=bind,source=$REPO_PATH/{ReplaceWithPackageBeingTested}/$CYPRESS_SLUG,target=/test/cypress/e2e --mount type=bind,source=$REPO_PATH/gluon/common,target=/test/cypress/common --mount type=bind,source=$VIDEO_PATH,target=/test/cypress/videos --name cypress cypress:local + ``` Otherwise, run the following command specifying the image you pulled earlier: