aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Gruntfile.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 92c9a204..fb11fba0 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -35,7 +35,7 @@ module.exports = function(grunt) {
util.parallelTask('tests:modules'),
util.parallelTask('tests:jquery'),
util.parallelTask('tests:jqlite'),
- util.parallelTask('tests:end2end')
+ util.parallelTask('test:e2e')
]
}
},
@@ -61,6 +61,11 @@ module.exports = function(grunt) {
},
testserver: {
options: {
+ // We use end2end task (which does not start the webserver)
+ // and start the webserver as a separate process (in travis_build.sh)
+ // to avoid https://github.com/joyent/libuv/issues/826
+ port: 8000,
+ hostname: '0.0.0.0',
middleware: function(connect, options){
return [
function(req, resp, next) {