Update tests to only bind to the loopback IP address
Prevents dozens of firewall prompts from appearing while running tests
This commit is contained in:
parent
354905dc00
commit
9000769449
|
|
@ -61,7 +61,7 @@ namespace Templates.Test.Helpers
|
|||
|
||||
var envVars = new Dictionary<string, string>
|
||||
{
|
||||
{ "ASPNETCORE_URLS", $"http://localhost:127.0.0.0:0;https://localhost:127.0.0.0:0" }
|
||||
{ "ASPNETCORE_URLS", $"http://127.0.0.1:0;https://127.0.0.1:0" }
|
||||
};
|
||||
|
||||
if (!publish)
|
||||
|
|
|
|||
Loading…
Reference in New Issue