Skip to content

Commit

Permalink
feat(config): remove polling usage
Browse files Browse the repository at this point in the history
- Remove polling usage for file change watching with chokidar on Mac OS

Closes #2669
  • Loading branch information
wesleycho committed May 6, 2017
1 parent 2a847c2 commit b0f41c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config.js
Expand Up @@ -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 = []
Expand Down

0 comments on commit b0f41c7

Please sign in to comment.