https://github.com/ronapelbaum/mangal
a simple angular 1.x project for unit testing practics
https://github.com/ronapelbaum/mangal
angularjs coverage jasmine karma
Last synced: about 2 months ago
JSON representation
a simple angular 1.x project for unit testing practics
- Host: GitHub
- URL: https://github.com/ronapelbaum/mangal
- Owner: ronapelbaum
- Created: 2016-03-22T18:38:03.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2020-06-18T14:29:33.000Z (about 6 years ago)
- Last Synced: 2025-03-28T18:51:12.578Z (about 1 year ago)
- Topics: angularjs, coverage, jasmine, karma
- Language: JavaScript
- Size: 26.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://travis-ci.org/ronapelbaum/mangal)
[](https://coveralls.io/github/ronapelbaum/mangal?branch=master)
[](https://stackshare.io/ronapelbaum/mangal)
# mangal
a simple angular 1.x project for unit testing practics
### Running app
```
npm start
```
### Goal
get 100% line coverage
### Getting started
```
npm install
npm test
```
## Solution: branch `tests_b`
```
git checkout tests_b
```
[](https://travis-ci.org/ronapelbaum/mangal)
[](https://coveralls.io/github/ronapelbaum/mangal?branch=tests_b)
## Appendix - how to init karma?
```
npm init
npm install --save jasmine-core
npm install --save karma
npm install --save karma-jasmine
npm install -g karma-cli
karma init
karma start
karma run
```