Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions test/dotnet-watch.Tests/HotReload/AspireHotReloadTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.DotNet.Watch.UnitTests
{
public class AspireHotReloadTests(ITestOutputHelper logger) : DotNetWatchTestBase(logger)
{
[PlatformSpecificFact(TestPlatforms.Windows)] // https://github.com/dotnet/sdk/issues/53058, https://github.com/dotnet/sdk/issues/53061, https://github.com/dotnet/sdk/issues/53114
[PlatformSpecificFact(TestPlatforms.Windows)] // https://github.com/dotnet/sdk/issues/53058, https://github.com/dotnet/sdk/issues/53061
public async Task Aspire_BuildError_ManualRestart()
{
var tfm = ToolsetInfo.CurrentTargetFramework;
Expand Down Expand Up @@ -116,7 +116,7 @@ public async Task Aspire_BuildError_ManualRestart()
await App.WaitUntilOutputContains("dotnet watch ⭐ [#3] Sending 'sessionTerminated'");
}

[PlatformSpecificFact(TestPlatforms.Windows)] // https://github.com/dotnet/sdk/issues/53058, https://github.com/dotnet/sdk/issues/53061, https://github.com/dotnet/sdk/issues/53114
[PlatformSpecificFact(TestPlatforms.Windows)] // https://github.com/dotnet/sdk/issues/53058, https://github.com/dotnet/sdk/issues/53061
public async Task Aspire_NoEffect_AutoRestart()
{
var tfm = ToolsetInfo.CurrentTargetFramework;
Expand Down
10 changes: 5 additions & 5 deletions test/dotnet-watch.Tests/HotReload/RazorHotReloadTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.DotNet.Watch.UnitTests
{
public class RazorHotReloadTests(ITestOutputHelper logger) : DotNetWatchTestBase(logger)
{
[PlatformSpecificTheory(TestPlatforms.Windows | TestPlatforms.OSX)] // https://github.com/dotnet/sdk/issues/53114
[Theory]
[CombinatorialData]
public async Task BlazorWasm(bool projectSpecifiesCapabilities)
{
Expand Down Expand Up @@ -69,7 +69,7 @@ public async Task BlazorWasm(bool projectSpecifiesCapabilities)
await App.WaitUntilOutputContains(MessageDescriptor.ManagedCodeChangesApplied);
}

[PlatformSpecificFact(TestPlatforms.Windows | TestPlatforms.OSX)] // https://github.com/dotnet/sdk/issues/53114
[Fact]
public async Task BlazorWasm_MSBuildWarning()
{
var testAsset = TestAssets
Expand All @@ -91,7 +91,7 @@ public async Task BlazorWasm_MSBuildWarning()
await App.WaitUntilOutputContains(MessageDescriptor.WaitingForChanges);
}

[PlatformSpecificFact(TestPlatforms.Windows | TestPlatforms.OSX)] // https://github.com/dotnet/sdk/issues/53114
[Fact]
public async Task BlazorWasm_Restart()
{
var testAsset = TestAssets.CopyTestAsset("WatchBlazorWasm")
Expand All @@ -114,7 +114,7 @@ public async Task BlazorWasm_Restart()
await App.WaitUntilOutputContains(MessageDescriptor.ReloadingBrowser);
}

[PlatformSpecificFact(TestPlatforms.Windows | TestPlatforms.OSX)] // https://github.com/dotnet/sdk/issues/53114
[Fact]
public async Task BlazorWasmHosted()
{
var testAsset = TestAssets.CopyTestAsset("WatchBlazorWasmHosted")
Expand All @@ -128,7 +128,7 @@ public async Task BlazorWasmHosted()
await App.WaitUntilOutputContains(MessageDescriptor.ApplicationKind_BlazorHosted);
}

[PlatformSpecificFact(TestPlatforms.Windows | TestPlatforms.OSX)] // https://github.com/dotnet/sdk/issues/53114
[Fact]
public async Task Razor_Component_ScopedCssAndStaticAssets()
{
var testAsset = TestAssets.CopyTestAsset("WatchRazorWithDeps")
Expand Down
Loading