@@ -28,22 +28,19 @@ protected override void InitializeAsyncCore()
28
28
WaitUntilLoaded ( ) ;
29
29
}
30
30
31
- [ Fact ]
32
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/54761" ) ]
31
+ [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/63524" ) ]
33
32
public void HasTitle ( )
34
33
{
35
34
Assert . Equal ( "Blazor standalone" , Browser . Title ) ;
36
35
}
37
36
38
- [ Fact ]
39
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/54761" ) ]
37
+ [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/63524" ) ]
40
38
public void HasHeading ( )
41
39
{
42
40
Assert . Equal ( "Hello, world!" , Browser . Exists ( By . TagName ( "h1" ) ) . Text ) ;
43
41
}
44
42
45
- [ Fact ]
46
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/54497" ) ]
43
+ [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/63524" ) ]
47
44
public void NavMenuHighlightsCurrentLocation ( )
48
45
{
49
46
var activeNavLinksSelector = By . CssSelector ( ".sidebar a.active" ) ;
@@ -69,8 +66,7 @@ public void NavMenuHighlightsCurrentLocation()
69
66
item => Assert . Equal ( "Home" , item . Text . Trim ( ) ) ) ;
70
67
}
71
68
72
- [ Fact ]
73
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/58242" ) ]
69
+ [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/63524" ) ]
74
70
public void CounterPageCanUseThreads ( )
75
71
{
76
72
// Navigate to "Counter"
@@ -87,8 +83,7 @@ public void CounterPageCanUseThreads()
87
83
Browser . NotEqual ( "Current count: 0" , ( ) => Browser . Exists ( By . CssSelector ( "h1 + p" ) ) . Text ) ;
88
84
}
89
85
90
- [ Fact ]
91
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/54761" ) ]
86
+ [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/63524" ) ]
92
87
public void HasFetchDataPage ( )
93
88
{
94
89
// Navigate to "Fetch data"
@@ -109,8 +104,7 @@ public void HasFetchDataPage()
109
104
}
110
105
}
111
106
112
- [ Fact ]
113
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/54761" ) ]
107
+ [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/63524" ) ]
114
108
public void IsStarted ( )
115
109
{
116
110
// Read from property
0 commit comments