18F/node-continua11y-acceptance

View on GitHub
lib/url-for-server.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

module.exports = function urlFor(server, path) {
  let port = server.address().port;
  let host = server.address().address;
  if (host === '::') {
    host = 'localhost';
  }

  return 'http://' + host + ':' + port + path;
};