jest 설치
> npm i -D jest 로 jest를 설치해주고
package.json
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"type" : "module"
package.json에 해당 단락을 추가해 jest로 test하도록 한다.
여기서 "test": "jest" 를 사용하는 대신 "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" 를 사용하면 "type" : "module" 을 사용면서 node 명령어와 npm test 명령어가 동시에 먹는다!
처럼 babel을 사용안해도 된다...
'boostcamp-challenge' 카테고리의 다른 글
[Boostcamp-challenge] 3주차 회고 (0) | 2024.08.08 |
---|---|
[8/7] http req/res (0) | 2024.08.08 |
[7/31] GIT (0) | 2024.07.31 |
[7/29] Javascript event 학습중... (0) | 2024.07.29 |
[Boostcamp-challenge] 2주차 회고 (0) | 2024.07.26 |