Skip to content
This repository has been archived by the owner on Mar 26, 2018. It is now read-only.

Commit

Permalink
default grunt task never gets to "build" task
Browse files Browse the repository at this point in the history
I believe the 'watch:test' task that is part of the default 'grunt test' task is a redundancy. If you want this behavior, you can run 'grunt serve:test'. The 'watch' tasks in 'grunt default' blocks grunt from reaching the 'build' process.
  • Loading branch information
mdaverde committed Apr 18, 2014
1 parent b574260 commit a718e8c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/templates/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -417,8 +417,7 @@ module.exports = function (grunt) {
'compass',<% } %><% if(testFramework === 'mocha') { %>
'connect:test',
'mocha',<% } else { %>
'jasmine',<% } %>
'watch:test'
'jasmine'<% } %>
];

if(!isConnected) {
Expand Down

0 comments on commit a718e8c

Please sign in to comment.