#Angular Testing Quick Start
This the companion project for the Angular Testing Quick Start from One Hungry Mind.
To read the guide head on over to the repo.
To run the app, make sure you have Node installed.
And install and run the serve
package so you can build the app.
npm install -g serve
serve src/
Navigate to http://localhost:3000
To run the tests, make sure you have Node installed.
Install and run the karma-cli
package so you can test the app.
npm install -g karma-cli
Then run npm install
and karma start
to run the tests.