Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
deipanema committed Oct 19, 2024
1 parent afcf04d commit 20c9192
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- cypress/install
- cypress/run-tests:
cypress-command: "npx wait-on@latest http://localhost:3000 && npx cypress run"
cypress-command: "npx wait-on@latest http://localhost:3000 && npx cypress run --record"
start-command: "npm run build && npm run start"

workflows:
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/spec.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ describe("로그인 페이지 테스트", () => {
cy.get('input[placeholder="비밀번호"]').type("012345678");
cy.contains("로그인").click();

cy.wait("@dashboard").then((_) => {
cy.wait("@dashboard").then(() => {
cy.contains("대시보드");
});
});
Expand Down

0 comments on commit 20c9192

Please sign in to comment.