Skip to content

Commit

Permalink
fix(karma): inject optional dependencies in karma tests
Browse files Browse the repository at this point in the history
  • Loading branch information
meriadec committed Oct 4, 2014
1 parent 0aba296 commit 38971a5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/templates/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,9 @@ function testClient (done) {
gulp.src([
'client/bower_components/angular/angular.js',
'client/bower_components/angular-mocks/angular-mocks.js',
'client/bower_components/angular-route/angular-route.js',
'client/bower_components/angular-route/angular-route.js',<% if (filters.ngCookies) { %>
'client/bower_components/angular-cookies/angular-cookies.js',<% } %><% if (filters.ngResource) { %>
'client/bower_components/angular-resource/angular-resource.js',<% } %>
'client/app.js',
'client/views/**/*.js',
'client/services/**/*.js',
Expand Down

0 comments on commit 38971a5

Please sign in to comment.