Added IIS variation to Nano smoke tests
This commit is contained in:
parent
33a323894f
commit
40f0bb1b45
|
|
@ -32,6 +32,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)]
|
||||
public async Task Test(ServerType serverType, int portToListen, ApplicationType applicationType)
|
||||
{
|
||||
var applicationBaseUrl = $"http://{_remoteDeploymentConfig.ServerName}:{portToListen}/";
|
||||
|
|
@ -70,6 +71,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)]
|
||||
public async Task Test(ServerType serverType, int portToListen, ApplicationType applicationType)
|
||||
{
|
||||
var applicationBaseUrl = $"http://{_remoteDeploymentConfig.ServerName}:{portToListen}/";
|
||||
|
|
|
|||
Loading…
Reference in New Issue