Teste de execução do NPM: Comando de cobertura no JEST
npm test -- --coverage
Super Stoat
npm test -- --coverage
// Command
npm run test -- --coverage
// If you wanna watch
npm run test -- --coverage --watchAll=true
// or
npm run test -- --coverage --watchAll=true
# in package.json
# "scripts": {
# "test": "jest --coverage"
# },
# using yarn
yarn test
# using npm
npm run test