[Vitest] Error: You must set an element with Modal.setAppElement(el) to make this accessible
1. 현상(1) 에러 발생Vitest 환경에서 ReactModal 테스트 구동시 발생한다.[에러 로그]Error: You must set an element with Modal.setAppElement(el) to make this accessiblesetAppElement throws error in testsWarning: react-modal: App element is not defined(2) 해결 방법테스트 대상 모달 컴포넌트에서 NODE_ENV 조건문을 추가한다.// beforeReactModal.setAppElement('#root');// after - 테스트 환경에서 setAppElement를 실행치 않도록 변경if (process.env.NODE_ENV !== 'test') React..
2024. 7. 14.