Skip to content
This repository has been archived by the owner on Dec 11, 2017. It is now read-only.

Latest commit

 

History

History
13 lines (10 loc) · 424 Bytes

testing.md

File metadata and controls

13 lines (10 loc) · 424 Bytes

Unit testing

All unit tests should be located in the same folder with tested component, and should have spec separated by dots in filename (Example: app.component.spec.ts). For now Jasmine is the only test framework used.

# running tests while developing
npm run test:dev

# single tests run
npm run test

# single tests run with code coverage output
npm run test:coverage