Skip to content

Commit

Permalink
test: auth redirection 토스트 확인 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
WaiNaat committed Sep 21, 2023
1 parent 71ab577 commit 640d39b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions frontend/cypress/e2e/auth.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,42 +3,42 @@ import login from '../utils/login';
describe('비로그인 상태에서는 로그인 페이지로 이동한다.', () => {
it('리마인더', () => {
cy.visit('/reminder');
cy.get('#toast-root').contains('로그인 후 이용 가능').url().should('match', /login/);
cy.url().should('match', /login/);
});

it('내 반려 식물 목록', () => {
cy.visit('/pet');
cy.get('#toast-root').contains('로그인 후 이용 가능').url().should('match', /login/);
cy.url().should('match', /login/);
});

it('반려 식물 상세 정보', () => {
cy.visit('/pet/123');
cy.get('#toast-root').contains('로그인 후 이용 가능').url().should('match', /login/);
cy.url().should('match', /login/);
});

it('반려 식물 등록: 검색', () => {
cy.visit('/pet/register');
cy.get('#toast-root').contains('로그인 후 이용 가능').url().should('match', /login/);
cy.url().should('match', /login/);
});

it('반려 식물 등록: 양식', () => {
cy.visit('/pet/register/1');
cy.get('#toast-root').contains('로그인 후 이용 가능').url().should('match', /login/);
cy.url().should('match', /login/);
});

it('마이페이지', () => {
cy.visit('/myPage');
cy.get('#toast-root').contains('로그인 후 이용 가능').url().should('match', /login/);
cy.url().should('match', /login/);
});

it('반려 식물 정보 수정', () => {
cy.visit('/pet/1/edit');
cy.get('#toast-root').contains('로그인 후 이용 가능').url().should('match', /login/);
cy.url().should('match', /login/);
});

it('타임라인', () => {
cy.visit('/pet/1/timeline');
cy.get('#toast-root').contains('로그인 후 이용 가능').url().should('match', /login/);
cy.url().should('match', /login/);
});
});

Expand Down

0 comments on commit 640d39b

Please sign in to comment.