Skip to content

Commit

Permalink
updated to grunt-coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
ezraroi committed Jun 28, 2015
1 parent c0406ea commit c82be92
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
12 changes: 5 additions & 7 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = function (grunt) {

grunt.loadNpmTasks('grunt-jscs');
grunt.loadNpmTasks('grunt-karma');
grunt.loadNpmTasks('grunt-karma-coveralls');
grunt.loadNpmTasks('grunt-coveralls');

// Define the configuration for all the tasks
grunt.initConfig({
Expand Down Expand Up @@ -131,14 +131,12 @@ module.exports = function (grunt) {

coveralls: {
options: {
debug: true,
coverageDir: 'coverage',
dryRun: true,
force: true,
recursive: true
force: false
},
test: {
src: 'coverage/*/lcov.info'
}
},

bump: {
options: {
files: ['package.json', 'bower.json'],
Expand Down
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ module.exports = function(config) {
dir: 'coverage/'
},

reporters : ['coverage']
reporters : ['progress', 'coverage']
});
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"grunt-contrib-watch": "~0.6.1",
"grunt-jscs": "^1.6.0",
"grunt-karma": "^0.10.1",
"grunt-karma-coveralls": "^2.5.3",
"grunt-coveralls": "^1.0.0",
"grunt-newer": "^1.1.0",
"grunt-ng-annotate": "~0.10.0",
"grunt-wiredep": "~2.0.0",
Expand Down

0 comments on commit c82be92

Please sign in to comment.