Skip to content

Commit ccb2bb0

Browse files
authored
Disable a few more watch tests that are failing because of the 11 update
1 parent f7288c5 commit ccb2bb0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

test/dotnet-watch.Tests/Browser/BrowserTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public async Task LaunchesBrowserOnStart()
2525
App.AssertOutputContains(MessageDescriptor.LaunchingBrowser.GetMessage("https://localhost:5001", ""));
2626
}
2727

28-
[PlatformSpecificFact(TestPlatforms.Windows)] // https://github.com/dotnet/aspnetcore/issues/63759
28+
[PlatformSpecificFact(TestPlatforms.Windows, Skip = "https://github.com/dotnet/sdk/issues/51491")] // https://github.com/dotnet/aspnetcore/issues/63759
2929
public async Task BrowserDiagnostics()
3030
{
3131
var testAsset = TestAssets.CopyTestAsset("WatchRazorWithDeps")

test/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ class AppUpdateHandler
776776
}
777777
}
778778

779-
[PlatformSpecificFact(TestPlatforms.Windows)]
779+
[PlatformSpecificFact(TestPlatforms.Windows, Skip = "https://github.com/dotnet/sdk/issues/51491")]
780780
public async Task GracefulTermination_Windows()
781781
{
782782
var tfm = ToolsetInfo.CurrentTargetFramework;
@@ -809,7 +809,7 @@ public async Task GracefulTermination_Windows()
809809
await App.WaitUntilOutputContains("exited with exit code 0.");
810810
}
811811

812-
[PlatformSpecificFact(TestPlatforms.AnyUnix)]
812+
[PlatformSpecificFact(TestPlatforms.AnyUnix, Skip = "https://github.com/dotnet/sdk/issues/51491")]
813813
public async Task GracefulTermination_Unix()
814814
{
815815
var tfm = ToolsetInfo.CurrentTargetFramework;
@@ -900,7 +900,7 @@ public async Task BlazorWasm(bool projectSpecifiesCapabilities)
900900
}
901901
}
902902

903-
[PlatformSpecificFact(TestPlatforms.Windows)] // https://github.com/dotnet/aspnetcore/issues/63759
903+
[PlatformSpecificFact(TestPlatforms.Windows, Skip = "https://github.com/dotnet/sdk/issues/51491")] // https://github.com/dotnet/aspnetcore/issues/63759
904904
public async Task BlazorWasm_MSBuildWarning()
905905
{
906906
var testAsset = TestAssets
@@ -969,7 +969,7 @@ public async Task BlazorWasmHosted()
969969
App.AssertOutputContains($"dotnet watch ⌚ [blazorhosted ({tfm})] Capabilities: 'Baseline AddMethodToExistingType AddStaticFieldToExistingType AddInstanceFieldToExistingType NewTypeDefinition ChangeCustomAttributes UpdateParameters GenericUpdateMethod GenericAddMethodToExistingType GenericAddFieldToExistingType AddFieldRva'");
970970
}
971971

972-
[PlatformSpecificFact(TestPlatforms.Windows)] // https://github.com/dotnet/aspnetcore/issues/63759
972+
[PlatformSpecificFact(TestPlatforms.Windows, Skip = "https://github.com/dotnet/sdk/issues/51491")] // https://github.com/dotnet/aspnetcore/issues/63759
973973
public async Task Razor_Component_ScopedCssAndStaticAssets()
974974
{
975975
var testAsset = TestAssets.CopyTestAsset("WatchRazorWithDeps")
@@ -1205,7 +1205,7 @@ public static void PrintDirectoryName([CallerFilePathAttribute] string filePath
12051205
await App.AssertOutputLineStartsWith("> NewSubdir", failure: _ => false);
12061206
}
12071207

1208-
[PlatformSpecificFact(TestPlatforms.Windows)] // https://github.com/dotnet/aspnetcore/issues/63759
1208+
[PlatformSpecificFact(TestPlatforms.Windows, Skip = "https://github.com/dotnet/sdk/issues/51491")] // https://github.com/dotnet/aspnetcore/issues/63759
12091209
public async Task Aspire_BuildError_ManualRestart()
12101210
{
12111211
var tfm = ToolsetInfo.CurrentTargetFramework;
@@ -1306,7 +1306,7 @@ public async Task Aspire_BuildError_ManualRestart()
13061306
App.AssertOutputContains("dotnet watch ⭐ [#3] Sending 'sessionTerminated'");
13071307
}
13081308

1309-
[PlatformSpecificFact(TestPlatforms.Windows)] // https://github.com/dotnet/aspnetcore/issues/63759
1309+
[PlatformSpecificFact(TestPlatforms.Windows, Skip = "https://github.com/dotnet/sdk/issues/51491")] // https://github.com/dotnet/aspnetcore/issues/63759
13101310
public async Task Aspire_NoEffect_AutoRestart()
13111311
{
13121312
var tfm = ToolsetInfo.CurrentTargetFramework;

0 commit comments

Comments
 (0)