Skip to content

Commit

Permalink
Fixed case issue in karma.conf.js
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorhakes committed Mar 19, 2016
1 parent f658ff9 commit 2ebd8c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = function (config) {

// list of files / patterns to load in the browser
files: [
'test/Promise.js'
'test/promise.js'
],


Expand All @@ -26,7 +26,7 @@ module.exports = function (config) {
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
'test/Promise.js': ['browserify']
'test/promise.js': ['browserify']
},


Expand Down

0 comments on commit 2ebd8c2

Please sign in to comment.