Eslint, Jest and Prettier in Action on Educative
Wrapping up what we have achieved so far, here’s all three environments fully set up and ready to run on our platform! Enjoy! :)
Prettier
Eslint
Jest
{
"name": "jest-test",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "jest --coverage"
},
"keywords": [],
"author": "Jan Bodnar",
"license": "ISC",
"devDependencies": {
"jest": "^24.0.0"
},
"dependencies": {
"axios": "^0.18.0",
"jest": "^24.0.0"
}
}In the next lesson, we’ll learn how to setup the React testing library (RTL) on Educative!