@@ -28,19 +28,19 @@ protected override void InitializeAsyncCore()
2828 WaitUntilLoaded ( ) ;
2929 }
3030
31- [ Fact ( Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524" ) ]
31+ [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/63524" ) ]
3232 public void HasTitle ( )
3333 {
3434 Assert . Equal ( "Blazor standalone" , Browser . Title ) ;
3535 }
3636
37- [ Fact ( Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524" ) ]
37+ [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/63524" ) ]
3838 public void HasHeading ( )
3939 {
4040 Assert . Equal ( "Hello, world!" , Browser . Exists ( By . TagName ( "h1" ) ) . Text ) ;
4141 }
4242
43- [ Fact ( Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524" ) ]
43+ [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/63524" ) ]
4444 public void NavMenuHighlightsCurrentLocation ( )
4545 {
4646 var activeNavLinksSelector = By . CssSelector ( ".sidebar a.active" ) ;
@@ -66,7 +66,7 @@ public void NavMenuHighlightsCurrentLocation()
6666 item => Assert . Equal ( "Home" , item . Text . Trim ( ) ) ) ;
6767 }
6868
69- [ Fact ( Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524" ) ]
69+ [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/63524" ) ]
7070 public void CounterPageCanUseThreads ( )
7171 {
7272 // Navigate to "Counter"
@@ -83,7 +83,7 @@ public void CounterPageCanUseThreads()
8383 Browser . NotEqual ( "Current count: 0" , ( ) => Browser . Exists ( By . CssSelector ( "h1 + p" ) ) . Text ) ;
8484 }
8585
86- [ Fact ( Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524" ) ]
86+ [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/63524" ) ]
8787 public void HasFetchDataPage ( )
8888 {
8989 // Navigate to "Fetch data"
@@ -104,7 +104,7 @@ public void HasFetchDataPage()
104104 }
105105 }
106106
107- [ Fact ( Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524" ) ]
107+ [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/63524" ) ]
108108 public void IsStarted ( )
109109 {
110110 // Read from property
0 commit comments