From 53978c42f10088fb29d09597817c5dde58aeb32b Mon Sep 17 00:00:00 2001 From: Vojta Jina Date: Thu, 31 Oct 2013 13:56:53 -0700 Subject: [PATCH] fix(config): use polling by default This should have been set to `true` in 18514d63534c82094b231eb1e0b0e41011519183. It's reversed. --- lib/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config.js b/lib/config.js index 3175d3ecd..144edc8d1 100644 --- a/lib/config.js +++ b/lib/config.js @@ -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 = [];