Skip to content

Testing

David Graham edited this page Jun 26, 2018 · 6 revisions

In this section of the tutorial we'll look at Unit and End-to-End testing...

Setup Jest

Add Jest to eslintrc.js

So that eslint will not complain about Jest we need to add it to the environment property:

.eslintrc.js

// ...

env: {
  browser: true,
  jest: true
},

Clone this wiki locally