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:
Nate McMaster 2018-01-25 11:34:56 -08:00 committed by Nate McMaster
parent 354905dc00
commit 9000769449
1 changed files with 1 additions and 1 deletions

View File

@ -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)