Skip to content

Commit

Permalink
Unskip integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jjonescz committed Nov 19, 2024
1 parent 324fd25 commit 892c80c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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(@"
Expand Down Expand Up @@ -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(@"
Expand Down Expand Up @@ -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(@"
Expand Down Expand Up @@ -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(@"
Expand Down Expand Up @@ -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);
Expand All @@ -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(@"
Expand All @@ -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(@"
Expand Down Expand Up @@ -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(@"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<IGlobalOptionService>(HangMitigatingCancellationToken);
Expand Down Expand Up @@ -85,7 +85,7 @@ End Class
}
}

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")]
[IdeFact]
public async Task GoToBaseFromMetadataAsSource()
{
var project = ProjectName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 892c80c

Please sign in to comment.