React Testing Library(RTL) (1) render, query, matcher, user Event
테스트의 순서는 대체로 다음과 같다. @testing-library/react에 있는 render로 dom 그리고 @testing-library/user-event로 이벤트를 발생시키고 @testing-library/jest-dom/extend-expect로 matcher를 통해서 테스트를 한후 @testing-library/react에 있는 cleanup으로 rennder된 dom tree를 지워준다. testing library? https://testing-library.com/docs/react-testing-library/intro React Testing Library | Testing Library React Testing Library builds on top of DOM Testing L..