Skip to content

Commit dd3bf82

Browse files
Copilotjaviercn
andcommitted
Simplify skip messages to use only URL as requested
Co-authored-by: javiercn <[email protected]>
1 parent 3b0bd8d commit dd3bf82

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

src/Components/test/E2ETest/Tests/ThreadingAppHostedTest.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ protected override void InitializeAsyncCore()
3232
WaitUntilLoaded();
3333
}
3434

35-
[Fact(Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524")]
35+
[Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/63524")]
3636
public void HasHeading()
3737
{
3838
Assert.Equal("Hello, world!", Browser.Exists(By.TagName("h1")).Text);
3939
}
4040

41-
[Fact(Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524")]
41+
[Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/63524")]
4242
public void NavMenuHighlightsCurrentLocation()
4343
{
4444
var activeNavLinksSelector = By.CssSelector(".sidebar a.active");
@@ -64,7 +64,7 @@ public void NavMenuHighlightsCurrentLocation()
6464
item => Assert.Equal("Home", item.Text.Trim()));
6565
}
6666

67-
[Fact(Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524")]
67+
[Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/63524")]
6868
public void CounterPageCanUseThreads()
6969
{
7070
// Navigate to "Counter"
@@ -81,7 +81,7 @@ public void CounterPageCanUseThreads()
8181
Browser.NotEqual("Current count: 0", () => Browser.Exists(By.CssSelector("h1 + p")).Text);
8282
}
8383

84-
[Fact(Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524")]
84+
[Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/63524")]
8585
public void HasFetchDataPage()
8686
{
8787
// Navigate to "Fetch data"

src/Components/test/E2ETest/Tests/ThreadingAppTest.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)