test

    React-testing-library 를 사용해서 TDD개발 흐름과 test로 null값 체크 해보기

    - Jest란 무엇인가? Jest는 대규모 웹 응용 프로그램에 대한 단순성과 지원에 중점을두고 Christoph Nakazawa가 설계 및 구축 한 Facebook, Inc.에서 유지 관리하는 JavaScript 테스트 프레임 워크입니다. 즉 Jest는 JS 테스트 프레임워크입니다. Babel, TS, Node,React,Angular,Vue 등을 사용하는 프로젝트에서 사용할 수 있다. 즉, 프로젝트에서 코드 테스트를 하기 위해 사용하는 프레임워크이다. Create React App 에서의 Jest Create React App uses Jest as its test runner. 출처 : https://create-react-app.dev/docs/running-tests/ CRA 환경에서는 Test ..