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.
This commit is contained in:
Spencer Alger
2013-12-18 17:11:32 -07:00
parent 3057c25c26
commit 50be1e86b3
8 changed files with 131 additions and 28 deletions

View File

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