Skip to content

Commit

Permalink
correct start command for kitchensink server
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcC399 committed May 12, 2023
1 parent 05a8da5 commit 2526be7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/guides/continuous-integration/gitlab-ci.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
# install dependencies
- npm ci
# start the server in the background
- npm run start:ci &
- npm start &
# run Cypress tests
- npm run e2e
```
Expand Down Expand Up @@ -84,7 +84,7 @@ test:
# install dependencies
- npm ci
# start the server in the background
- npm run start:ci &
- npm start &
# run Cypress tests
- npx cypress run --browser firefox
```
Expand Down Expand Up @@ -115,7 +115,7 @@ test:
# install dependencies
- npm ci
# start the server in the background
- npm run start:ci &
- npm start &
# run Cypress tests
- npx cypress run --browser firefox
artifacts:
Expand Down Expand Up @@ -223,7 +223,7 @@ ui-chrome-tests:
# install dependencies
- npm ci
# start the server in the background
- npm run start:ci &
- npm start &
# run Cypress tests in parallel
- npx cypress run --record --parallel --browser chrome --group "UI - Chrome"
```
Expand Down

0 comments on commit 2526be7

Please sign in to comment.