[ Jest ] 모듈 모킹에 대해 알아보자
·
Front-end/Test-Framework
목표모듈 모킹에 대해 학습하고 정리합니다 공식문서 Mock Functions · JestMock functions allow you to test the links between code by erasing the actual implementation of a function, capturing calls to the function (and the parameters passed in those calls), capturing instances of constructor functions when instantiated with new,jestjs.io 모듈 모킹은 무엇인가?모듈모킹의 정의모듈모킹은 테스트 환경에서 외부 의존성을 실제로 사용하지않고, 모의 객체를 만들어 사용하는 방법입니다.모킹을 ..