Revert "Temporarily skip NanoServer's IIS tests"

This reverts commit 249c39e803.
This commit is contained in:
Kiran Challa 2017-06-08 13:58:49 -07:00
parent ff8d87a8be
commit 820ce07906
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ namespace E2ETests
[SkipIfEnvironmentVariableNotEnabled("RUN_TESTS_ON_NANO")]
[InlineData(ServerType.Kestrel, 5000, ApplicationType.Standalone)]
[InlineData(ServerType.WebListener, 5000, ApplicationType.Standalone)]
[InlineData(ServerType.IIS, 8080, ApplicationType.Standalone, Skip = "https://github.com/aspnet/MusicStore/issues/796")]
[InlineData(ServerType.IIS, 8080, ApplicationType.Standalone)]
public async Task Test(ServerType serverType, int portToListen, ApplicationType applicationType)
{
var applicationBaseUrl = $"http://{_remoteDeploymentConfig.ServerName}:{portToListen}/";
@ -63,7 +63,7 @@ namespace E2ETests
[SkipIfEnvironmentVariableNotEnabled("RUN_TESTS_ON_NANO")]
[InlineData(ServerType.Kestrel, 5000, ApplicationType.Portable)]
[InlineData(ServerType.WebListener, 5000, ApplicationType.Portable)]
[InlineData(ServerType.IIS, 8080, ApplicationType.Portable, Skip = "https://github.com/aspnet/MusicStore/issues/796")]
[InlineData(ServerType.IIS, 8080, ApplicationType.Portable)]
public async Task Test(ServerType serverType, int portToListen, ApplicationType applicationType)
{
var applicationBaseUrl = $"http://{_remoteDeploymentConfig.ServerName}:{portToListen}/";