-
Notifications
You must be signed in to change notification settings - Fork 232
Testing
David Graham edited this page Jul 7, 2018
·
6 revisions
In this section of the tutorial we'll look at Unit and End-to-End testing...
npm install jest babel-jest vue-jest --save-dev
So that eslint will not complain about Jest we need to add it to the environment property:
.eslintrc.js
// ...
env: {
browser: true,
jest: true
},