FIX try using localhost, since it seems the server returned address doesn't seem to be accessible in CI

This commit is contained in:
Norbert de Langen 2020-03-18 16:31:37 +01:00
parent 9054c902ac
commit 0a50d7d86d
No known key found for this signature in database
GPG Key ID: 976651DA156C2825

View File

@ -64,11 +64,11 @@ const useLocation = async path => {
}
const { address, port } = server.address();
const result = typeof address === 'string' ? address : `http://localhost:${port}/iframe.html`;
resolve([
typeof address === 'string' ? address : `http://${address}:${port}/iframe.html`,
server.close.bind(server),
]);
console.log(`connecting to: ${result}`);
resolve([result, server.close.bind(server)]);
});
});
};