Unskipped Nano server's standalone tests
This commit is contained in:
parent
e606844509
commit
7dff704c34
|
|
@ -1,10 +1,9 @@
|
|||
using Microsoft.AspNetCore.Server.IntegrationTesting;
|
||||
using Microsoft.AspNetCore.Server.IntegrationTesting.xunit;
|
||||
using Microsoft.AspNetCore.Testing.xunit;
|
||||
using Microsoft.DotNet.PlatformAbstractions;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Server.IntegrationTesting;
|
||||
using Microsoft.AspNetCore.Server.IntegrationTesting.xunit;
|
||||
using Microsoft.AspNetCore.Testing.xunit;
|
||||
using Xunit;
|
||||
using Xunit.Abstractions;
|
||||
|
||||
|
|
|
|||
|
|
@ -29,12 +29,9 @@ namespace E2ETests
|
|||
[OSSkipCondition(OperatingSystems.Linux)]
|
||||
[OSSkipCondition(OperatingSystems.MacOSX)]
|
||||
[SkipIfEnvironmentVariableNotEnabled("RUN_TESTS_ON_NANO")]
|
||||
[InlineData(ServerType.Kestrel, 5000, ApplicationType.Standalone,
|
||||
Skip = "https://github.com/aspnet/MusicStore/issues/761")]
|
||||
[InlineData(ServerType.WebListener, 5000, ApplicationType.Standalone,
|
||||
Skip = "https://github.com/aspnet/MusicStore/issues/761")]
|
||||
[InlineData(ServerType.IIS, 8080, ApplicationType.Standalone,
|
||||
Skip = "https://github.com/aspnet/MusicStore/issues/761")]
|
||||
[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}/";
|
||||
|
|
|
|||
Loading…
Reference in New Issue