From b0f41c7f860a803b9ec0cd8b0aa308d7d2b5ec17 Mon Sep 17 00:00:00 2001 From: Wesley Cho Date: Sat, 6 May 2017 11:25:36 -0700 Subject: [PATCH] feat(config): remove polling usage - Remove polling usage for file change watching with chokidar on Mac OS Closes #2669 --- lib/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config.js b/lib/config.js index deeaf6d7d..d1ba6abed 100644 --- a/lib/config.js +++ b/lib/config.js @@ -315,7 +315,7 @@ var Config = function () { this.autoWatch = true this.autoWatchBatchDelay = 250 this.restartOnFileChange = false - this.usePolling = process.platform === 'darwin' || process.platform === 'linux' + this.usePolling = process.platform === 'linux' this.reporters = ['progress'] this.singleRun = false this.browsers = []