Answers for "jest command coverage"

1

npm run test:coverage command in jest

npm test -- --coverage
Posted by: Guest on May-14-2020
1

jest command coverage

# in package.json
# "scripts": {
#     "test": "jest --coverage"
# },

# using yarn
yarn test

# using npm
npm run test
Posted by: Guest on February-11-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language