Skip to content

Commit

Permalink
fix(file_list): follow symlinks
Browse files Browse the repository at this point in the history
Changing to the latest version of the glob module means that
karma no longer follows symlinks to find files to serve.
Setting foillow:true in the glob options enables this
behaviour again.
  • Loading branch information
gavinaiken committed Jun 9, 2015
1 parent d83fab9 commit ee26748
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/file_list.js
Expand Up @@ -53,6 +53,7 @@ Url.prototype.toString = File.prototype.toString = function () {

var GLOB_OPTS = {
// globDebug: true,
follow: true,
cwd: '/'
}

Expand Down

0 comments on commit ee26748

Please sign in to comment.