From 1839043f8cfb457b4989063b06d92ccb2688422d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=A7=84=ED=98=B8?= Date: Wed, 21 Aug 2024 15:46:55 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=9E=9C=EB=94=A9=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=ED=99=94=EB=A9=B4=EC=9D=98=20=EB=B3=80=ED=99=94?= =?UTF-8?q?=EC=97=90=20=EB=94=B0=EB=A5=B8=20e2e=20=ED=85=8C=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=20=EC=BD=94=EB=93=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/cypress/e2e/createEvent.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cypress/e2e/createEvent.cy.ts b/client/cypress/e2e/createEvent.cy.ts index dcfa04ee0..5b4a93884 100644 --- a/client/cypress/e2e/createEvent.cy.ts +++ b/client/cypress/e2e/createEvent.cy.ts @@ -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'); });