Skip to content

Commit

Permalink
test: 오늘의 일기 삭제 테스트 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ShinjungOh committed Apr 3, 2024
1 parent 79e1093 commit 45da7f5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/feature/calendar_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,12 @@ Scenario('diary overlap error', async ({ I }) => {
I.see('오늘의 일기가 존재해요.');
I.click('확인');
});

Scenario('diary delete', async ({ I }) => {
await I.signIn();

I.amOnPage('/timeline');
I.click({ name: 'delete_diary' });
I.see('일기를 삭제하시겠어요?');
I.click('확인');
});

0 comments on commit 45da7f5

Please sign in to comment.