Skip to content

Commit

Permalink
fix(config): use polling by default
Browse files Browse the repository at this point in the history
This should have been set to `true` in 18514d6. It's reversed.
  • Loading branch information
vojtajina committed Oct 31, 2013
1 parent 033b882 commit 53978c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ var Config = function() {
this.colors = true;
this.autoWatch = false;
this.autoWatchBatchDelay = 250;
this.usePolling = false;
this.usePolling = true;
this.reporters = ['progress'];
this.singleRun = false;
this.browsers = [];
Expand Down

0 comments on commit 53978c4

Please sign in to comment.