Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 4656e38

Browse files
committed
chore: fix Travis build
Specify hostname/port for connect server to avoid joyent/libuv#826 Conflicts: Gruntfile.js
1 parent f29f2f9 commit 4656e38

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Gruntfile.js

+5
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@ module.exports = function(grunt) {
5959
},
6060
testserver: {
6161
options: {
62+
// We use end2end task (which does not start the webserver)
63+
// and start the webserver as a separate process (in travis_build.sh)
64+
// to avoid https://github.com/joyent/libuv/issues/826
65+
port: 8000,
66+
hostname: '0.0.0.0',
6267
middleware: function(connect, options){
6368
return [
6469
function(req, resp, next) {

0 commit comments

Comments
 (0)