Skip to content

Commit a8dd291

Browse files
fix: command in YAML file for solution exercise 11.9 part 2
1 parent 7ea80bb commit a8dd291

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ jobs:
2626
- name: e2e tests
2727
uses: cypress-io/github-action@v5
2828
with:
29-
command: npm run test:e2e
29+
command: npm run cypress:run
3030
start: npm run start-prod
3131
wait-on: http://localhost:5001

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"test": "jest",
1010
"eslint": "eslint './**/*.{js,jsx}'",
1111
"build": "webpack --mode production",
12-
"test:e2e": "cypress open"
12+
"test:e2e": "cypress open",
13+
"cypress:run": "cypress run"
1314
},
1415
"repository": {
1516
"type": "git",

0 commit comments

Comments
 (0)