Skip to content

Commit 7a15fe4

Browse files
committed
fix(grunt): Add testDependencies file array to karma config for travis
1 parent 4115263 commit 7a15fe4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Gruntfile.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,9 @@ module.exports = function(grunt) {
115115
karma: {
116116
options: {
117117
configFile: 'test/karma.conf.js',
118-
files: util.angularFiles(util.latestAngular()).concat(util.testFiles.unit),
118+
files: util.testDependencies.unit
119+
.concat(util.angularFiles(util.latestAngular()))
120+
.concat(util.testFiles.unit),
119121
background: true
120122
},
121123
// dev: {

0 commit comments

Comments
 (0)