Skip to content

Commit c91ffbc

Browse files
committed
fix(config): #1113 Watching is not working properly on linux
Solve bug in watch service by using pooling Closes #1113
1 parent 3873c53 commit c91ffbc

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
@@ -212,7 +212,7 @@ var Config = function() {
212212
this.colors = true;
213213
this.autoWatch = true;
214214
this.autoWatchBatchDelay = 250;
215-
this.usePolling = process.platform === 'darwin';
215+
this.usePolling = process.platform === 'darwin' || process.platform === 'linux';
216216
this.reporters = ['progress'];
217217
this.singleRun = false;
218218
this.browsers = [];

0 commit comments

Comments
 (0)