Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
using System.Text.RegularExpressions;
using Microsoft.AspNetCore.BrowserTesting;
using Microsoft.AspNetCore.Internal;
using Microsoft.AspNetCore.InternalTesting;
using Microsoft.Extensions.CommandLineUtils;
using Microsoft.Playwright;
using Templates.Test.Helpers;
Expand All @@ -14,6 +15,7 @@ namespace BlazorTemplates.Tests;

#pragma warning disable xUnit1041 // Fixture arguments to test classes must have fixture sources

[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/#aw_blazwasm")]
Comment thread
wtgodbe marked this conversation as resolved.
Outdated
public class BlazorWasmTemplateTest(ProjectFactoryFixture projectFactory) : BlazorTemplateTest(projectFactory)
{
public override string ProjectType { get; } = "blazorwasm";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ namespace BlazorTemplates.Tests;

#pragma warning disable xUnit1041 // Fixture arguments to test classes must have fixture sources

[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/#aw_webwkr")]
Comment thread
wtgodbe marked this conversation as resolved.
Outdated
public class WebWorkerTemplateE2ETest(ProjectFactoryFixture projectFactory) : BlazorTemplateTest(projectFactory)
{
public override string ProjectType => "blazorwasm";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,6 @@ public async Task ConfigurationChangeCanBeIgnoredOutOfProcess()
await deploymentResult.HttpClient.RetryRequestAsync("/ProcessId", async r => await r.Content.ReadAsStringAsync() == processBefore);
}

[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/55937")]
[ConditionalFact]
public async Task OutOfProcessToInProcessHostingModelSwitchWorks()
{
Expand Down
Loading