Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 0 additions & 1 deletion tests/Aspire.Cli.EndToEnd.Tests/BannerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ await auto.WaitUntilAsync(
}

[Fact]
[ActiveIssue("https://github.com/microsoft/aspire/issues/14307")]
public async Task Banner_NotDisplayedWithNoLogoFlag()
{
Comment on lines 90 to 93
Copy link

Copilot AI Mar 25, 2026

Choose a reason for hiding this comment

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

Re-enabling this test will likely reintroduce the original timeout: the test body waits for help output to contain the literal text "Commands:", but the root command help is generated by GroupedHelpWriter (group headings like "App commands:", "Options:", etc.) and does not output a "Commands:" header. Consider updating the wait condition to look for stable text that is actually emitted (e.g., "Usage:" / group headings from HelpGroupStrings, or waiting for the success prompt and then asserting the banner text is absent).

Copilot uses AI. Check for mistakes.
var repoRoot = CliE2ETestHelpers.GetRepoRoot();
Expand Down
1 change: 0 additions & 1 deletion tests/Aspire.Cli.Tests/Commands/RunCommandTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,6 @@ public async Task AppHostHelper_BuildAppHostAsync_IncludesRelativePathInStatusMe
}

[Fact]
[ActiveIssue("https://github.com/microsoft/aspire/issues/14321")]
public async Task RunCommand_SkipsBuild_WhenExtensionDevKitCapabilityIsAvailable()
Comment thread
JamesNK marked this conversation as resolved.
Outdated
{
var buildCalled = false;
Expand Down
Loading