Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 브라우저의 렌더링 과정
- 빌트인 객체
- 인터넷 장비
- 전역변수의문제점
- 프로그래머스
- 이미지 갤러리 최적화
- 블로그 서비스 최적화
- 프로퍼티 어트리뷰트
- 이벤트
- 제너레이터와 async/await
- 자바스크립트 패턴
- Property Attribute
- 자바스크립트
- 비전공이지만 개발자로 먹고삽니다
- 커리어
- DOM
- var 사용금지
- 모던 자바스크립트 Deep Dive
- 스코프
- Set과 Map
- 자바스크립트 딥다이브
- 딥다이브
- package management
- Babel과 Webpack
- 디스트럭처링
- peerdependencies
- const
- 프론트엔드 성능 최적화 가이드
- 올림픽 통계 서비스 최적화
- ES6함수 추가기능
Archives
- Today
- Total
Dev Blog
Section 3: Testing Basics 본문
Online Lectures/JavaScript Unit Testing - The Practical
Section 3: Testing Basics
Nomad Kim 2023. 3. 28. 05:42Understanding Unit Testing Fundamentals
- Creating Unit Tests
- AAA - Arrange, Act, Asset
AAA - Arrange, Act, Assert
- A - Arrange, Define the testing environment & values
- A - Act, Run the actual code / function that should be tested
- A - Assert, Evaluate the produced value / result and compare it to the expected value / result
Writing Good Tests Is An Iterative Process!
Test examples(basic-testing-frontend)
Vitest 사용이유
Jest 의 경우, ES-Module 을 experimental support 하므로,
이를 위한 설정이 필요하다. 단지 테스트를 위해 이 같은 설정을 하는 것은 바람직하지 않을 수 있다.
따라서, ES Module 을 지원하고, Jest API 를 사용할 수 있는 Vitest 로 결정.
'Online Lectures > JavaScript Unit Testing - The Practical' 카테고리의 다른 글
Section7: Mocking & Spies: Dealing with Side Effects (0) | 2023.04.05 |
---|---|
Section6: Advanced Testing Concepts (0) | 2023.04.05 |
Section 5: Integration Tests (0) | 2023.04.05 |
Section 4: Writing Good Tests (0) | 2023.04.05 |
Section 2: Setup & Testing Software (0) | 2023.03.28 |
Comments