Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions lib/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*/

var request = require('superagent');
var url = require('url');
var util = require('util');
var http = require('http');
var https = require('https');
Expand Down Expand Up @@ -51,15 +52,21 @@ Object.setPrototypeOf(Test.prototype, Request.prototype);
* @api private
*/

Test.prototype.serverAddress = function(app, path, host) {
Test.prototype.serverAddress = function(app, pathname, hostname = '127.0.0.1') {
var addr = app.address();
var port;
var protocol;

if (!addr) this._server = app.listen(0);
port = app.address().port;
protocol = app instanceof https.Server ? 'https' : 'http';
return protocol + '://' + (host || '127.0.0.1') + ':' + port + path;

return url.format({
protocol,
hostname,
port,
pathname
});
};

/**
Expand Down