Skip to content
Merged
Changes from all 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
4 changes: 2 additions & 2 deletions test/dotnet-watch.Tests/Watch/GlobbingAppTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public GlobbingAppTests(ITestOutputHelper logger)
{
}

[ConditionalTheory(Skip = "https://github.com/dotnet/sdk/issues/42921")]
[ConditionalTheory]
Copy link
Preview

Copilot AI Aug 4, 2025

Choose a reason for hiding this comment

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

Re-enabling this test should include verification that the underlying issue #42921 has been resolved. Consider adding a comment explaining why the test is now safe to re-enable or what changes fixed the original problem.

Copilot generated this review using guidance from repository custom instructions.

[InlineData(true)]
[InlineData(false)]
public async Task ChangeCompiledFile(bool usePollingWatcher)
Expand Down Expand Up @@ -85,7 +85,7 @@ public async Task RenameCompiledFile()
await App.AssertStarted();
}

[Fact(Skip = "https://github.com/dotnet/sdk/issues/42921")]
[Fact]
Copy link
Preview

Copilot AI Aug 4, 2025

Choose a reason for hiding this comment

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

Re-enabling this test should include verification that the underlying issue #42921 has been resolved. Consider adding a comment explaining why the test is now safe to re-enable or what changes fixed the original problem.

Copilot generated this review using guidance from repository custom instructions.

public async Task ChangeExcludedFile()
{
var testAsset = TestAssets.CopyTestAsset(AppName)
Expand Down