npm install eslint-plugin-testing-library eslint-plugin-jest-dom --save-dev
testing-library : render로 DOM을 그리는 부분
jest-dom : expect-matcher로 테스트
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
package.json 에서 eslintConfig 삭제{
"plugins": ["testing-library", "jest-dom"],
"extends": [
"react-app",
"plugin:testing-library/react",
"plugin:jest-dom/recommended"
]
}
.eslintrc.json에 해당 코드 추가
