You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not an issue but would be great to see some code coverage
Istanbul is currently showing 69.23% coverage for functions. You should also set up istanbul (npm install —save-dev istanbul) and then in package.json:
Then when you do npm run codecov you will see code coverage in the terminal. Also, a new folder will be created called coverage, inside this folder open lcov-report and then open index.html to see the code coverage results in the browser.
Write some tests for startDoDo and sortToDos to bump your code coverage up!
The text was updated successfully, but these errors were encountered:
Not an issue but would be great to see some code coverage
Istanbul is currently showing 69.23% coverage for functions. You should also set up istanbul (npm install —save-dev istanbul) and then in package.json:
"codecov": "istanbul cover tape ./tests/*.test.js | tap-spec"
Then when you do npm run codecov you will see code coverage in the terminal. Also, a new folder will be created called coverage, inside this folder open lcov-report and then open index.html to see the code coverage results in the browser.
Write some tests for startDoDo and sortToDos to bump your code coverage up!
The text was updated successfully, but these errors were encountered: