jest란?
[jest] jest란?
[jest] jest란?
2022.01.17🎯 jest facebook에서 오픈소스화한 테스팅 프레임워크 assertion 함수들, test runner, mock 라이브러리 등을 모두 제공한다. create-react-app에서 기본적으로 사용된다. (npm test) 사용성이 좋고, 가장 인기 있는 프로젝트다. 📝 jest의 핵심 기능들 assertion matchers (.toBe, .toEqual) async assertion mock functions testing lifecycle functions grouping snapshot testing 📝 Assertion matchers jest는 풍부한 matcher를 제공하여, 여러 상황에서 match를 체크할 수 있다. expect()는 expectation object를 리턴한다. 이..