mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Build] npm start should ignore coverage directory (#10415)
Running test coverage and running Kibana should not interfere with each other.
This commit is contained in:
parent
ddbebca13e
commit
c34342f803
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ module.exports = class ClusterManager {
|
|||
|
||||
this.watcher = chokidar.watch(uniq(watchPaths), {
|
||||
cwd: fromRoot('.'),
|
||||
ignored: /[\\\/](\..*|node_modules|bower_components|public|__tests__)[\\\/]/
|
||||
ignored: /[\\\/](\..*|node_modules|bower_components|public|__tests__|coverage)[\\\/]/
|
||||
});
|
||||
|
||||
this.watcher.on('add', this.onWatcherAdd);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue