Skip to content

Commit

Permalink
fix: 랜딩페이지 화면의 변화에 따른 e2e 테스트 코드 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhokim98 committed Aug 21, 2024
1 parent 7ebfc96 commit 1839043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/cypress/e2e/createEvent.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ beforeEach(() => {
describe('Flow: 랜딩 페이지에서부터 이벤트를 생성 완료하는 flow', () => {
it('랜딩페이지에서 "행사 생성하기" 버튼을 눌러 행사 이름 입력 페이지로 이동해야 한다.', () => {
cy.visit('/');
cy.get('button').should('have.text', '행사 생성하기').click();
cy.get('header').find('button').click();
cy.url().should('include', '/event/create/name');
});

Expand Down

0 comments on commit 1839043

Please sign in to comment.