Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,7 @@ interface IBar
}

[IdeTheory]
//[CombinatorialData]
[InlineData(false, Skip = "https://github.com/dotnet/roslyn/issues/77293")]
[InlineData(true)]
[CombinatorialData]
public async Task GoToImplementationFromMetadataAsSource(bool asyncNavigation)
{
await TestServices.Editor.ConfigureAsyncNavigation(asyncNavigation ? AsyncNavigationKind.Asynchronous : AsyncNavigationKind.Synchronous, HangMitigatingCancellationToken);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ private void ExecuteWhenButtonClicked(object sender, EventArgs e)
""", codeFileActualText);
}

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/77293")]
[IdeFact]
public async Task RenameControl()
{
var project = ProjectName;
Expand Down Expand Up @@ -152,7 +152,7 @@ await TestServices.Workspace.WaitForAllAsyncOperationsAsync(
Assert.DoesNotContain(@"private System.Windows.Forms.Button SomeButton;", actualText);
}

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/77293")]
[IdeFact]
public async Task RemoveEventHandler()
{
var project = ProjectName;
Expand Down Expand Up @@ -182,7 +182,7 @@ await TestServices.Workspace.WaitForAllAsyncOperationsAsync(
Assert.DoesNotContain(@"VisualStudio.Editor.SomeButton.Click += new System.EventHandler(VisualStudio.Editor.GooHandler);", actualText);
}

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/77293")]
[IdeFact]
public async Task ChangeAccessibility()
{
var project = ProjectName;
Expand Down Expand Up @@ -211,7 +211,7 @@ await TestServices.Workspace.WaitForAllAsyncOperationsAsync(
var actualText = await TestServices.Editor.GetTextAsync(HangMitigatingCancellationToken);
Assert.Contains(@"public System.Windows.Forms.Button SomeButton;", actualText);
}
[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/77293")]
[IdeFact]
public async Task DeleteControl()
{
if (ExecutionConditionUtil.IsBitness64)
Expand Down
Loading