diff --git a/test/MusicStore.E2ETests/SmokeTests.cs b/test/MusicStore.E2ETests/SmokeTests.cs index 543a282054..824e578f3f 100644 --- a/test/MusicStore.E2ETests/SmokeTests.cs +++ b/test/MusicStore.E2ETests/SmokeTests.cs @@ -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; diff --git a/test/MusicStore.E2ETests/SmokeTestsOnNanoServer.cs b/test/MusicStore.E2ETests/SmokeTestsOnNanoServer.cs index 29b05d6555..c3413e0efe 100644 --- a/test/MusicStore.E2ETests/SmokeTestsOnNanoServer.cs +++ b/test/MusicStore.E2ETests/SmokeTestsOnNanoServer.cs @@ -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}/";