Skip to content
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

Update 2024-09-02-TDD.md #165

Merged
merged 1 commit into from
Sep 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions _posts/2024-09-02-TDD.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,11 @@ E2E 테스트

* Jest: 페이스북에서 개발한 JavaScript 테스트 프레임워크로, 빠르고 직관적인 테스트 환경을 제공한다.
* Cypress: E2E 테스트 도구로, 브라우저에서 실제 사용자와 같은 환경에서 테스트를 실행할 수 있다.
* Mocha:
* React testing:
* Mocha: 테스트 러너를 포함한 테스트 프레임워크다.
초기에 NodeJs로 실행되는 애플리케이션의 테스트를 위해서 설계되었다. Assertion을 포함하지 않으므로
작동하기 위해서 다른 라이브러리 설치 및 설정 작업이 필요하다. 단위 테스트, 통합 테스트 E2E 테스트 등 다양한 테스트를 지원한다.

> Assertion은 에러가 없는 프로그램을 작성하기 위한 하나의 수법을 의미한다.

<!-- React testing -->

Expand Down
Loading