Skip to content

Commit c3215a8

Browse files
committed
skip karma task on build
1 parent 2db6415 commit c3215a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Gruntfile.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ module.exports = function ( grunt ) {
532532
files: [
533533
'<%= app_files.js %>'
534534
],
535-
tasks: [ 'newer:jshint:src', 'karma:unit:run', 'newer:gjslint', 'copy:build_appjs' ]
535+
tasks: [ 'newer:jshint:src', 'newer:gjslint', 'copy:build_appjs' ]
536536
},
537537

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

549549
/**
@@ -624,7 +624,7 @@ module.exports = function ( grunt ) {
624624
* before watching for changes.
625625
*/
626626
grunt.renameTask( 'watch', 'delta' );
627-
grunt.registerTask( 'watch', [ 'build', 'karma:unit', 'delta' ] );
627+
grunt.registerTask( 'watch', [ 'build', 'delta' ] );
628628

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

643643
/**

0 commit comments

Comments
 (0)