Skip to content

Commit

Permalink
skip karma task on build
Browse files Browse the repository at this point in the history
  • Loading branch information
smesdaghi committed May 18, 2015
1 parent 2db6415 commit c3215a8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ module.exports = function ( grunt ) {
files: [
'<%= app_files.js %>'
],
tasks: [ 'newer:jshint:src', 'karma:unit:run', 'newer:gjslint', 'copy:build_appjs' ]
tasks: [ 'newer:jshint:src', 'newer:gjslint', 'copy:build_appjs' ]
},

/**
Expand All @@ -543,7 +543,7 @@ module.exports = function ( grunt ) {
files: [
'<%= app_files.coffee %>'
],
tasks: [ 'coffeelint:src', 'coffee:source', 'karma:unit:run', 'copy:build_appjs' ]
tasks: [ 'coffeelint:src', 'coffee:source', 'copy:build_appjs' ]
},

/**
Expand Down Expand Up @@ -624,7 +624,7 @@ module.exports = function ( grunt ) {
* before watching for changes.
*/
grunt.renameTask( 'watch', 'delta' );
grunt.registerTask( 'watch', [ 'build', 'karma:unit', 'delta' ] );
grunt.registerTask( 'watch', [ 'build', 'delta' ] );

/**
* The default task is to build and compile.
Expand All @@ -637,7 +637,7 @@ module.exports = function ( grunt ) {
grunt.registerTask( 'build', [
'clean', 'html2js', 'gjslint', 'jshint', 'coffeelint', 'coffee', 'recess:build',
'concat:build_css', 'copy:build_app_assets', 'copy:build_vendor_assets', 'copy:build_vendor_fonts',
'copy:build_appjs', 'copy:build_vendorjs', 'index:build', 'indexlite:build', 'karmaconfig', 'karma:continuous'
'copy:build_appjs', 'copy:build_vendorjs', 'index:build', 'indexlite:build'
]);

/**
Expand Down

0 comments on commit c3215a8

Please sign in to comment.