Include all of lib in karma

This commit is contained in:
Jesse Schwartzentruber 2017-04-25 14:27:17 -04:00
parent 973df12a25
commit 6e986d5702
1 changed files with 6 additions and 1 deletions

View File

@ -5,6 +5,11 @@ module.exports = function(config) {
frameworks: ['qunit'],
files: [
'../lib/utils/init.js',
'../lib/utils/*.js',
'../lib/logging/*.js',
'../lib/make/init.js',
'../lib/make/*.js',
'../lib/random/*.js',
'**/*.js'
],
@ -13,7 +18,7 @@ module.exports = function(config) {
],
preprocessors: {
'../!(tests)/*.js': ['coverage']
'../lib/**/*.js': ['coverage']
},
reporters: ['progress', 'coverage'],