$ npm install -g angular-cli- Install the Angular CLI$ git clone https://github.com/equalize-squad/equalizei-front.git- Clone the project$ cd equalizei-front- Go into the project folder$ npm install- Install all dependencies
$ ng serve- Opens the server- Open http://localhost:4200/
npm testTests will execute after a build is executed via Karma
If run with the watch argument --watch (shorthand -w) builds will run when source files have changed
and tests will run after each successful build
After ran the unit tests, run the following command to see the coverage:
npm run coverageand see the reports at coverage folder
ng e2eBefore running the tests make sure you are serving the app via ng serve.
End-to-end tests are ran via Protractor using Cucumber. 😁
Follow the GitHub Flow