File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -11,4 +11,5 @@ Each Pull Request will contain explanation and steps taken to complete a feature
11
11
## Testing
12
12
13
13
- [ Add project on Travis CI] ( https://github.com/brunolm/angular-how-to/pull/2 )
14
- - [ Add code coverage and coveralls integration] ( https://github.com/brunolm/angular-how-to/pull/3 )
14
+ - [ Add code coverage and coveralls integration] ( https://github.com/brunolm/angular-how-to/pull/3 )
15
+ - [ Add code coverage thresholds] ( https://github.com/brunolm/angular-how-to/pull/4 )
Original file line number Diff line number Diff line change @@ -17,7 +17,13 @@ module.exports = function (config) {
17
17
} ,
18
18
coverageIstanbulReporter : {
19
19
reports : [ 'html' , 'lcovonly' ] ,
20
- fixWebpackSourcePaths : true
20
+ fixWebpackSourcePaths : true ,
21
+ thresholds : {
22
+ statements : 90 ,
23
+ lines : 90 ,
24
+ branches : 90 ,
25
+ functions : 90
26
+ }
21
27
} ,
22
28
angularCli : {
23
29
environment : 'dev'
You can’t perform that action at this time.
0 commit comments