Files
elasticsearch-js/grunt/config/watch.js
Spencer Alger 50be1e86b3 Summary of Changes:
- Polished some Grunt config options while testing livereload capabilities in grunt-watch
- tests for connection_pool selection with no living connections
- tests for connection abstract's mini request implementation for ping.
2013-12-18 17:11:32 -07:00

17 lines
250 B
JavaScript

module.exports = {
source: {
files: [
'src/**/*.js',
'grunt/**/*.js',
'test/unit/**/*.js',
'Gruntfile.js'
],
tasks: [
'jshint',
'mochacov:unit'
],
options: {
interrupt: true
}
}
};