Skip to content
This repository has been archived by the owner on Sep 20, 2020. It is now read-only.

Commit

Permalink
fix(karma): fixes "lodash" reference
Browse files Browse the repository at this point in the history
  • Loading branch information
mdreizin committed Apr 17, 2015
1 parent 97327f0 commit 4cfc3bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/conf/karma.any.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = function(_config) {
config.files.push('bower_components/jquery/dist/jquery.js');
config.files.push('bower_components/angular/angular.js');
config.files.push('bower_components/angular-mocks/angular-mocks.js');
config.files.push('bower_components/lodash/dist/lodash.js');
config.files.push('bower_components/lodash/lodash.js');
config.files.push('test/testUtil.js');
config.files.push('ui-router-versions/' + dynamicConfig.uiRouter + '/angular-ui-router.js');

Expand All @@ -31,5 +31,5 @@ module.exports = function(_config) {
console.log(dynamicConfig);
console.log("Testing with these files: ", config.files);

_config.set(config);
_config.set(config);
};

0 comments on commit 4cfc3bb

Please sign in to comment.