포스팅 목적: FrontEnd test 도입 1) 설치 및 실행 설치 방법 yarn add --dev jest or npm install --save-dev jest 설치 후 Package.json에 설정해야 할 것 { "scripts": { "test": "jest" } } yarn test or npm run test 명령으로 테스트를 실행할 수 있다. 2) 추가 구성 프로젝트에서 Babel을 사용할 경우 jest에도 Babel 설정이 필요하다. yarn add --dev babel-jest @babel/core @babel/preset-env babel.config.js에 설정해야 할 것 // babel.config.js module.exports = { presets: [['@babel/prese..