Skip to content

Commit

Permalink
fix: e2e 테스트용 서버가 백그라운드에서 실행될 수 있도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
toothlessdev committed Aug 22, 2024
1 parent 2158702 commit a3c8f27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ jobs:
run: npm run build

- name: Run e2e Tests
run: npm run test:e2e
run: npm run test:e2e-ci
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"preview": "vite preview",
"start": "serve dist -p 5173",
"test": "jest",
"test:e2e": "start-test start http://localhost:5173 cypress run"
"test:e2e": "cypress run",
"test:e2e-ci": "start-server-and-test start http://localhost:5173 test:e2e"
},
"dependencies": {
"@emotion/react": "^11.13.3",
Expand Down

0 comments on commit a3c8f27

Please sign in to comment.