Remove blazor server from the installer tests as it was removed from the templates in https://github.com/dotnet/aspnetcore/pull/48615
This commit is contained in:
parent
6c0c1444a7
commit
6eaaf3e962
5 changed files with 0 additions and 6 deletions
|
@ -15,7 +15,6 @@ public enum DotNetTemplate
|
||||||
Mvc,
|
Mvc,
|
||||||
Razor,
|
Razor,
|
||||||
BlazorWasm,
|
BlazorWasm,
|
||||||
BlazorServer,
|
|
||||||
WebApi,
|
WebApi,
|
||||||
WebApp,
|
WebApp,
|
||||||
Worker,
|
Worker,
|
||||||
|
|
|
@ -16,7 +16,6 @@ public static class DotNetTemplateExtensions
|
||||||
|| template == DotNetTemplate.WebApi
|
|| template == DotNetTemplate.WebApi
|
||||||
|| template == DotNetTemplate.Razor
|
|| template == DotNetTemplate.Razor
|
||||||
|| template == DotNetTemplate.BlazorWasm
|
|| template == DotNetTemplate.BlazorWasm
|
||||||
|| template == DotNetTemplate.BlazorServer
|
|
||||||
|| template == DotNetTemplate.Worker
|
|| template == DotNetTemplate.Worker
|
||||||
|| template == DotNetTemplate.Angular;
|
|| template == DotNetTemplate.Angular;
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,6 @@ public class OmniSharpTests : SmokeTests
|
||||||
|
|
||||||
[SkippableTheory(Config.ExcludeOmniSharpEnv, skipOnTrue: true)]
|
[SkippableTheory(Config.ExcludeOmniSharpEnv, skipOnTrue: true)]
|
||||||
[InlineData(DotNetTemplate.BlazorWasm)]
|
[InlineData(DotNetTemplate.BlazorWasm)]
|
||||||
[InlineData(DotNetTemplate.BlazorServer)]
|
|
||||||
[InlineData(DotNetTemplate.ClassLib)]
|
[InlineData(DotNetTemplate.ClassLib)]
|
||||||
[InlineData(DotNetTemplate.Console)]
|
[InlineData(DotNetTemplate.Console)]
|
||||||
[InlineData(DotNetTemplate.MSTest)]
|
[InlineData(DotNetTemplate.MSTest)]
|
||||||
|
|
|
@ -41,7 +41,6 @@ public class WebScenarioTests : SmokeTests
|
||||||
|
|
||||||
yield return new(nameof(WebScenarioTests), DotNetLanguage.CSharp, DotNetTemplate.Razor, DotNetActions.Build | DotNetActions.Run | DotNetActions.Publish);
|
yield return new(nameof(WebScenarioTests), DotNetLanguage.CSharp, DotNetTemplate.Razor, DotNetActions.Build | DotNetActions.Run | DotNetActions.Publish);
|
||||||
yield return new(nameof(WebScenarioTests), DotNetLanguage.CSharp, DotNetTemplate.BlazorWasm, DotNetActions.Build | DotNetActions.Run | DotNetActions.Publish);
|
yield return new(nameof(WebScenarioTests), DotNetLanguage.CSharp, DotNetTemplate.BlazorWasm, DotNetActions.Build | DotNetActions.Run | DotNetActions.Publish);
|
||||||
yield return new(nameof(WebScenarioTests), DotNetLanguage.CSharp, DotNetTemplate.BlazorServer, DotNetActions.Build | DotNetActions.Run | DotNetActions.Publish);
|
|
||||||
yield return new(nameof(WebScenarioTests), DotNetLanguage.CSharp, DotNetTemplate.Worker);
|
yield return new(nameof(WebScenarioTests), DotNetLanguage.CSharp, DotNetTemplate.Worker);
|
||||||
yield return new(nameof(WebScenarioTests), DotNetLanguage.CSharp, DotNetTemplate.Angular);
|
yield return new(nameof(WebScenarioTests), DotNetLanguage.CSharp, DotNetTemplate.Angular);
|
||||||
}
|
}
|
||||||
|
|
|
@ -203,7 +203,6 @@ namespace EndToEnd.Tests
|
||||||
string expectedOutput =
|
string expectedOutput =
|
||||||
@"[\-\s]+
|
@"[\-\s]+
|
||||||
[\w \.]+webapp,razor\s+\[C#\][\w\ \/]+
|
[\w \.]+webapp,razor\s+\[C#\][\w\ \/]+
|
||||||
[\w \.]+blazorserver\s+\[C#\][\w\ \/]+
|
|
||||||
[\w \.]+classlib\s+\[C#\],F#,VB[\w\ \/]+
|
[\w \.]+classlib\s+\[C#\],F#,VB[\w\ \/]+
|
||||||
[\w \.]+console\s+\[C#\],F#,VB[\w\ \/]+
|
[\w \.]+console\s+\[C#\],F#,VB[\w\ \/]+
|
||||||
";
|
";
|
||||||
|
@ -347,7 +346,6 @@ namespace EndToEnd.Tests
|
||||||
[InlineData("xunit", "C#")]
|
[InlineData("xunit", "C#")]
|
||||||
[InlineData("xunit", "VB")]
|
[InlineData("xunit", "VB")]
|
||||||
[InlineData("xunit", "F#")]
|
[InlineData("xunit", "F#")]
|
||||||
[InlineData("blazorserver")]
|
|
||||||
[InlineData("blazorwasm")]
|
[InlineData("blazorwasm")]
|
||||||
[InlineData("web")]
|
[InlineData("web")]
|
||||||
[InlineData("web", "C#")]
|
[InlineData("web", "C#")]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue