diff --git a/src/VisualStudio/IntegrationTest/New.IntegrationTests/VisualBasic/BasicEditAndContinue.cs b/src/VisualStudio/IntegrationTest/New.IntegrationTests/VisualBasic/BasicEditAndContinue.cs index 94b7dc0ea1b81..ada9330d18438 100644 --- a/src/VisualStudio/IntegrationTest/New.IntegrationTests/VisualBasic/BasicEditAndContinue.cs +++ b/src/VisualStudio/IntegrationTest/New.IntegrationTests/VisualBasic/BasicEditAndContinue.cs @@ -46,7 +46,7 @@ public override async Task InitializeAsync() await TestServices.SolutionExplorer.AddProjectAsync(ProjectName, _projectTemplate, LanguageNames.VisualBasic, HangMitigatingCancellationToken); } - [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458, https://github.com/dotnet/roslyn/issues/75456")] + [IdeFact] public async Task UpdateActiveStatementLeafNode() { await TestServices.Editor.SetTextAsync(@" @@ -78,7 +78,7 @@ End Module await TestServices.Debugger.CheckExpressionAsync("names(1)", "String", "\"bar\"", HangMitigatingCancellationToken); } - [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458, https://github.com/dotnet/roslyn/issues/75456")] + [IdeFact] public async Task AddTryCatchAroundActiveStatement() { await TestServices.Editor.SetTextAsync(@" @@ -107,7 +107,7 @@ Catch ex As Exception await TestServices.EditorVerifier.CurrentLineTextAsync(" End Try", cancellationToken: HangMitigatingCancellationToken); } - [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458, https://github.com/dotnet/roslyn/issues/75456")] + [IdeFact] public async Task EditLambdaExpression() { await TestServices.Editor.SetTextAsync(@" @@ -164,7 +164,7 @@ await TestServices.Workspace.WaitForAllAsyncOperationsAsync( Assert.Empty(await TestServices.ErrorList.GetBuildErrorsAsync(HangMitigatingCancellationToken)); } - [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458, https://github.com/dotnet/roslyn/issues/75456")] + [IdeFact] public async Task EnCWhileDebuggingFromImmediateWindow() { await TestServices.Editor.SetTextAsync(@" @@ -227,7 +227,7 @@ End Module await TestServices.Workspace.WaitForAsyncOperationsAsync(FeatureAttribute.Workspace, cancellationToken); } - [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")] + [IdeFact] public async Task MultiProjectDebuggingWhereNotAllModulesAreLoaded() { await SetupMultiProjectSolutionAsync(HangMitigatingCancellationToken); @@ -251,7 +251,7 @@ await TestServices.Workspace.WaitForAllAsyncOperationsAsync( AssertEx.Empty(await TestServices.ErrorList.GetErrorsAsync(HangMitigatingCancellationToken)); } - [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458, https://github.com/dotnet/roslyn/issues/75456")] + [IdeFact] public async Task LocalsWindowUpdatesAfterLocalGetsItsTypeUpdatedDuringEnC() { await TestServices.Editor.SetTextAsync(@" @@ -275,7 +275,7 @@ End Module Assert.Equal(("Single", "10"), await TestServices.LocalsWindow.GetEntryAsync(["goo"], HangMitigatingCancellationToken)); } - [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458, https://github.com/dotnet/roslyn/issues/75456")] + [IdeFact] public async Task LocalsWindowUpdatesCorrectlyDuringEnC() { await TestServices.Editor.SetTextAsync(@" @@ -309,7 +309,7 @@ End Module Assert.Equal(("Long", "444"), await TestServices.LocalsWindow.GetEntryAsync(["lLng"], HangMitigatingCancellationToken)); } - [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458, https://github.com/dotnet/roslyn/issues/75456")] + [IdeFact] public async Task WatchWindowUpdatesCorrectlyDuringEnC() { await TestServices.Editor.SetTextAsync(@" diff --git a/src/VisualStudio/IntegrationTest/New.IntegrationTests/VisualBasic/BasicGoToDefinition.cs b/src/VisualStudio/IntegrationTest/New.IntegrationTests/VisualBasic/BasicGoToDefinition.cs index 62c96998f1c3e..b6adfd645e916 100644 --- a/src/VisualStudio/IntegrationTest/New.IntegrationTests/VisualBasic/BasicGoToDefinition.cs +++ b/src/VisualStudio/IntegrationTest/New.IntegrationTests/VisualBasic/BasicGoToDefinition.cs @@ -47,7 +47,7 @@ Dim gibberish As SomeClass Assert.False(await TestServices.Shell.IsActiveTabProvisionalAsync(HangMitigatingCancellationToken)); } - [IdeTheory(Skip = "https://github.com/dotnet/roslyn/issues/75458"), CombinatorialData] + [IdeTheory, CombinatorialData] public async Task ObjectBrowserNavigation(bool navigateToObjectBrowser) { var globalOptions = await TestServices.Shell.GetComponentModelServiceAsync(HangMitigatingCancellationToken); @@ -85,7 +85,7 @@ End Class } } - [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")] + [IdeFact] public async Task GoToBaseFromMetadataAsSource() { var project = ProjectName; diff --git a/src/VisualStudio/IntegrationTest/New.IntegrationTests/Workspace/WorkspaceBase.cs b/src/VisualStudio/IntegrationTest/New.IntegrationTests/Workspace/WorkspaceBase.cs index afa744e934bda..a58a5bf222fcf 100644 --- a/src/VisualStudio/IntegrationTest/New.IntegrationTests/Workspace/WorkspaceBase.cs +++ b/src/VisualStudio/IntegrationTest/New.IntegrationTests/Workspace/WorkspaceBase.cs @@ -32,7 +32,7 @@ protected async Task InitializeWithDefaultSolution() await TestServices.SolutionExplorer.RestoreNuGetPackagesAsync(ProjectName, HangMitigatingCancellationToken); } - [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")] + [IdeFact] public async Task OpenCSharpThenVBSolution() { await InitializeWithDefaultSolution();