Updating test coverage
How to update test coverage ?
// App's package.json
{
"scripts" : {
"start-app-with-nyc" : "nyc --nycrc-path <nyc-config-file> <your app start command>"
},
}{
/*
Rest of your cli config...
*/
appStartCommand: 'npm',
appStartCommandArgs: ['run', 'start-app-with-nyc'],
}Last updated