We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 405f326 commit b73c46cCopy full SHA for b73c46c
1 file changed
Gruntfile.js
@@ -35,7 +35,7 @@ module.exports = function(grunt) {
35
util.parallelTask('tests:modules'),
36
util.parallelTask('tests:jquery'),
37
util.parallelTask('tests:jqlite'),
38
- util.parallelTask('tests:end2end')
+ util.parallelTask('test:e2e')
39
]
40
}
41
},
@@ -61,6 +61,11 @@ module.exports = function(grunt) {
61
62
testserver: {
63
options: {
64
+ // We use end2end task (which does not start the webserver)
65
+ // and start the webserver as a separate process (in travis_build.sh)
66
+ // to avoid https://github.com/joyent/libuv/issues/826
67
+ port: 8000,
68
+ hostname: '0.0.0.0',
69
middleware: function(connect, options){
70
return [
71
function(req, resp, next) {
0 commit comments