Skip to content

Commit 53978c4

Browse files
committed
fix(config): use polling by default
This should have been set to `true` in 18514d6. It's reversed.
1 parent 033b882 commit 53978c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ var Config = function() {
186186
this.colors = true;
187187
this.autoWatch = false;
188188
this.autoWatchBatchDelay = 250;
189-
this.usePolling = false;
189+
this.usePolling = true;
190190
this.reporters = ['progress'];
191191
this.singleRun = false;
192192
this.browsers = [];

0 commit comments

Comments
 (0)