Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
12 changes: 4 additions & 8 deletions src/Components/test/E2ETest/Tests/ThreadingAppHostedTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,13 @@ protected override void InitializeAsyncCore()
WaitUntilLoaded();
}

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

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54761")]
[Fact(Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524")]
public void NavMenuHighlightsCurrentLocation()
{
var activeNavLinksSelector = By.CssSelector(".sidebar a.active");
Expand All @@ -66,8 +64,7 @@ public void NavMenuHighlightsCurrentLocation()
item => Assert.Equal("Home", item.Text.Trim()));
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54761")]
[Fact(Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524")]
public void CounterPageCanUseThreads()
{
// Navigate to "Counter"
Expand All @@ -84,8 +81,7 @@ public void CounterPageCanUseThreads()
Browser.NotEqual("Current count: 0", () => Browser.Exists(By.CssSelector("h1 + p")).Text);
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54761")]
[Fact(Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524")]
public void HasFetchDataPage()
{
// Navigate to "Fetch data"
Expand Down
18 changes: 6 additions & 12 deletions src/Components/test/E2ETest/Tests/ThreadingAppTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,19 @@ protected override void InitializeAsyncCore()
WaitUntilLoaded();
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54761")]
[Fact(Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524")]
public void HasTitle()
{
Assert.Equal("Blazor standalone", Browser.Title);
}

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

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54497")]
[Fact(Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524")]
public void NavMenuHighlightsCurrentLocation()
{
var activeNavLinksSelector = By.CssSelector(".sidebar a.active");
Expand All @@ -69,8 +66,7 @@ public void NavMenuHighlightsCurrentLocation()
item => Assert.Equal("Home", item.Text.Trim()));
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/58242")]
[Fact(Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524")]
public void CounterPageCanUseThreads()
{
// Navigate to "Counter"
Expand All @@ -87,8 +83,7 @@ public void CounterPageCanUseThreads()
Browser.NotEqual("Current count: 0", () => Browser.Exists(By.CssSelector("h1 + p")).Text);
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54761")]
[Fact(Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524")]
public void HasFetchDataPage()
{
// Navigate to "Fetch data"
Expand All @@ -109,8 +104,7 @@ public void HasFetchDataPage()
}
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54761")]
[Fact(Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524")]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot Just use the URL in all the skipped tests. Do not add any additional text

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated all skip messages to use only the URL. Commit 3b0bd8d

public void IsStarted()
{
// Read from property
Expand Down
Loading