Skip to content

Commit

Permalink
fix(grunt): Add testDependencies file array to karma config for travis
Browse files Browse the repository at this point in the history
  • Loading branch information
c0bra committed Jan 16, 2014
1 parent 4115263 commit 7a15fe4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Gruntfile.js
Expand Up @@ -115,7 +115,9 @@ module.exports = function(grunt) {
karma: {
options: {
configFile: 'test/karma.conf.js',
files: util.angularFiles(util.latestAngular()).concat(util.testFiles.unit),
files: util.testDependencies.unit
.concat(util.angularFiles(util.latestAngular()))
.concat(util.testFiles.unit),
background: true
},
// dev: {
Expand Down

0 comments on commit 7a15fe4

Please sign in to comment.