- 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.
17 lines
250 B
JavaScript
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
|
|
}
|
|
}
|
|
}; |