File tree Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ module.exports = function(grunt) {
3636 } ,
3737 coveralls : {
3838 options : {
39- coverage_dir : 'coverage/'
39+ coverage_dir : 'coverage/' ,
40+ recursive : true
4041 }
4142 } ,
4243 karma : {
@@ -59,7 +60,8 @@ module.exports = function(grunt) {
5960 } ,
6061 coverageReporter : {
6162 type : "lcov" ,
62- dir : "coverage/"
63+ dir : "coverage/" ,
64+ recursive : true
6365 }
6466 } ,
6567 saucelabs : {
@@ -120,5 +122,5 @@ module.exports = function(grunt) {
120122 } ) ;
121123
122124 // Development
123- grunt . registerTask ( 'test' , [ "karma:coverage" , "karma:saucelabs" ] ) ;
125+ grunt . registerTask ( 'test' , [ "karma:coverage" ] ) ;
124126} ;
Original file line number Diff line number Diff line change @@ -22,5 +22,4 @@ Package.onUse(function(api) {
2222 api . use ( 'digimet:[email protected] ' , where ) ; 2323
2424 api . addFiles ( './dist/ng-flow.js' , where ) ; // Files in use
25-
26- } ) ;
25+ } ) ;
Original file line number Diff line number Diff line change 2626 "readmeFilename" : " README.md" ,
2727 "devDependencies" : {
2828 "grunt" : " ~0.4" ,
29- "grunt-contrib-uglify" : " ~0.11" ,
30- "grunt-contrib-concat" : " ~0.5.1" ,
31- "grunt-karma" : " ~0.12.1" ,
32- "grunt-coveralls" : " ~1.0.0" ,
3329 "grunt-bump" : " 0.7.0" ,
3430 "grunt-contrib-clean" : " ~0.7.0" ,
31+ "grunt-contrib-concat" : " ~0.5.1" ,
32+ "grunt-contrib-uglify" : " ~0.11" ,
33+ "grunt-karma" : " ~0.12.1" ,
34+ "grunt-karma-coveralls" : " ^2.5.4" ,
3535 "karma" : " 0.13" ,
3636 "karma-coverage" : " 0.5.3" ,
37- "karma-jasmine" : " 0.3" ,
3837 "karma-firefox-launcher" : " 0.1.7" ,
38+ "karma-jasmine" : " ^0.3.6" ,
3939 "karma-sauce-launcher" : " 0.3.0"
4040 }
4141}
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ if [ $TEST = "unit-tests" ]; then
99 sh -e /etc/init.d/xvfb start
1010 sleep 1
1111 grunt karma:coverage
12+ grunt coveralls
1213
1314elif [[ $TEST = " browser-tests" ]]; then
1415
You can’t perform that action at this time.
0 commit comments