I was testing my app with Jest, but how it's so hard to find documentation on internet I changed to Mocha
Now I'm trying to generate the coverage.
In my package.json I put the line to test:
scripts: {
...
"test": "mocha './src/__tests__/**/*.test.js' --compilers js:babel-core/register"
}
What do I need to generate the coverage with Istanbul or something else?