files & status for my Pluralsight course on Unit Testing
Go to file
James Skemp f48dcbf206 Add test to test routerLink usage in component 2021-08-10 13:18:09 -05:00
e2e Initial Commit 2018-04-05 12:26:31 -06:00
src Add test to test routerLink usage in component 2021-08-10 13:18:09 -05:00
.editorconfig Initial Commit 2018-04-05 12:26:31 -06:00
.gitignore Add code coverage generation to all test running 2021-08-09 13:41:02 -05:00
README.md Update config to no longer run code coverage after every test 2021-08-09 15:33:27 -05:00
angular.json Update config to no longer run code coverage after every test 2021-08-09 15:33:27 -05:00
package-lock.json Update package-lock after install 2021-08-09 11:44:23 -05:00
package.json new package.json 2018-12-11 15:05:27 -07:00
protractor.conf.js Initial Commit 2018-04-05 12:26:31 -06:00
tsconfig.json Initial Commit 2018-04-05 12:26:31 -06:00
tslint.json Initial Commit 2018-04-05 12:26:31 -06:00

README.md

Pluralsight's Unit Testing in Angular Course

This course is up to date.

To get started, clone the repo or download it

npm install
npm test

ng test --no-watch --code-coverage will generate a new coverage folder with a test coverage report.

angular.json can also be updated with the following to create reports every time you test. See Find out how much code you're testing for more information.

However, see https://medium.com/ngconf/angular-unit-testing-code-coverage-lies-603c6c85f801

"test": {
  "options": {
    "codeCoverage": true
  }
}