diff --git a/test/podlet-plugin.js b/test/podlet-plugin.js index 60f9513..990a6db 100644 --- a/test/podlet-plugin.js +++ b/test/podlet-plugin.js @@ -66,7 +66,7 @@ class Server { listen() { return new Promise((resolve, reject) => { this.app - .listen({ port: 0, host: '0.0.0.0' }) + .listen({ port: 0, host: '127.0.0.1' }) .then(() => { const address = this.app.server.address(); const url = `http://localhost:${address.port}`;