-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore/#38 playwright 테스트 설정 #60
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
minai621
requested review from
gs0428,
ghdtjgus76 and
ShinYoung-Kim
as code owners
August 17, 2024 12:36
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
요약 (Summary)
컴포넌트의 시각적 회귀 테스트와 접근성 테스트를 위해 playwright를 도입하였습니다.
컴포넌트 수정이 스타일의 변화와 같은 시각적인 변경이 있는지 확인합니다. 단위 테스트로 확인할 수 없는 UI 변경을 감지합니다.
사용자 사용 경험 향상을 위해 접근성을 위배하지 않았는지 확인합니다. 단위 테스트로는 실제 UI 동작을 확인할 수 없어 playwright에서의 테스트가 유의미하다고 생각했습니다.
배경 (Background)
UI 컴포넌트 개발 과정에서 의도하지 않은 시각적 변경이나 접근성 문제가 발생할 수 있습니다. 이러한 문제들은 단순한 단위 테스트로는 포착하기 어렵고, 수동 테스트는 시간이 많이 소요되며 일관성이 떨어질 수 있습니다. Playwright를 도입함으로써 자동화된 방식으로 이러한 문제들을 효과적으로 감지하고 해결할 수 있습니다.
목표 (Goals)
이외 고려 사항들 (Other Considerations)
컴포넌트를 수정할 때, 스타일을 변경해야 하는 경우가 존재합니다.
만일, 합의된 변경 사항이라면 PR에서 VRT 레이블을 추가하여 스냅샷을 업데이트하여 테스트가 통과될 수 있도록 해야 합니다.
테스트 환경이 ci 환경이기 때문에 로컬 환경이 아님을 유의해야 합니다.
필요한 경우 폰트 설치와 같은 설정을 추가로 해주어야 합니다.
관련 이슈