From c91ffbc05f78f2c17dcc43039300cdf045e64ccc Mon Sep 17 00:00:00 2001 From: ERt Date: Thu, 26 Jun 2014 21:31:38 +0200 Subject: [PATCH] fix(config): #1113 Watching is not working properly on linux Solve bug in watch service by using pooling Closes #1113 --- lib/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config.js b/lib/config.js index a3474f891..c353c1938 100644 --- a/lib/config.js +++ b/lib/config.js @@ -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 = [];