State *.js in karma.conf rather than *.* so *.js~ files are ignored.

This commit is contained in:
Kegan Dougal 2014-11-06 09:34:35 +00:00
parent 69c396825b
commit 7465250141

View File

@ -25,13 +25,13 @@ module.exports = function(config) {
'../js/ng-infinite-scroll-matrix.js',
'../js/ui-bootstrap*',
'../js/elastic.js',
'../login/**/*.*',
'../room/**/*.*',
'../components/**/*.*',
'../user/**/*.*',
'../home/**/*.*',
'../recents/**/*.*',
'../settings/**/*.*',
'../login/**/*.js',
'../room/**/*.js',
'../components/**/*.js',
'../user/**/*.js',
'../home/**/*.js',
'../recents/**/*.js',
'../settings/**/*.js',
'../app.js',
'../app*',
'./unit/**/*.js'