Skip to content

Commit

Permalink
fix(config): #1113 Watching is not working properly on linux
Browse files Browse the repository at this point in the history
Solve bug in watch service by using pooling

Closes #1113
  • Loading branch information
ertwroc committed Jun 26, 2014
1 parent 3873c53 commit c91ffbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config.js
Expand Up @@ -212,7 +212,7 @@ var Config = function() {
this.colors = true;
this.autoWatch = true;
this.autoWatchBatchDelay = 250;
this.usePolling = process.platform === 'darwin';
this.usePolling = process.platform === 'darwin' || process.platform === 'linux';
this.reporters = ['progress'];
this.singleRun = false;
this.browsers = [];
Expand Down

0 comments on commit c91ffbc

Please sign in to comment.