integration test
-
프론트엔드 테스트 코드 작성하기 - 기초편React.js & Next.js 2024. 3. 28. 23:19
목차 prerequisites Project Basic Code Test Code Explain each test codes Results 마치며 1) Prerequisites 이번 장에서는 vs code의 extension인 Jest Runner를 사용합니다. 이전 장에서 다룬 레포지토리를 확장하여 사용합니다 2) Project 코드는 해당 레포지토리에서 다운로드하실 수 있습니다. https://github.com/junh0328/react-test GitHub - junh0328/react-test Contribute to junh0328/react-test development by creating an account on GitHub. github.com 기본적인 UI를 위해, styled-in-..
-
프론트엔드 테스트 코드 시작하기 - 개념편React.js & Next.js 2024. 3. 26. 20:13
목차 Goal What do you want to test Types of tests End to End test Integration test Unit test Static test Project Prerequisites Init Installation jest ts-node set the config Add script on package.json Initialize the test jsdom environment Sumaary results etc 레퍼런스 1) Goal 정확성 및 신뢰성 확보 테스팅의 주요 목적은 코드가 올바르게 작동하는지 확인하는 것 다양한 조건 및 입력에서 리액트 컴포넌트가 예상대로 동작하는지 확인하는 것 수월한 리팩터링 프로젝트가 성장하면 리팩터링이 필요함 코드 품질, 성능개..