Skip to content

Commit

Permalink
fix: 정산 시작하기 버튼 누를 때 플로우가 바뀌어 cypress 코드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhokim98 committed Nov 19, 2024
1 parent 25b4690 commit b7bd3b3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client/cypress/e2e/createEvent.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ describe('Flow: 랜딩 페이지에서부터 이벤트를 생성 완료하는 fl
it('랜딩페이지에서 "정산 시작하기" 버튼을 눌러 행사 이름 입력 페이지로 이동해야 한다.', () => {
cy.visit('/');
cy.get('button').contains('정산 시작하기').click();
cy.url().should('include', ROUTER_URLS.login);
cy.get('button').contains('비회원으로 진행하기').click();
cy.url().should('include', ROUTER_URLS.createEvent);
});

Expand Down

0 comments on commit b7bd3b3

Please sign in to comment.