Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip Diagnostic tests for now #8174

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.VisualStudio.Razor.IntegrationTests;

public class DiagnosticTests : AbstractRazorEditorTest
{
[IdeFact(Skip = "https://github.com/dotnet/razor/issues/8036")]
[IdeFact(Skip = "https://github.com/dotnet/razor/issues/8150")]
public async Task Diagnostics_ShowErrors_Razor()
{
// Arrange
Expand Down Expand Up @@ -49,7 +49,7 @@ public void Function(){
});
}

[IdeFact]
[IdeFact(Skip = "https://github.com/dotnet/razor/issues/8150")]
public async Task Diagnostics_ShowErrors_Html()
{
// Arrange
Expand Down Expand Up @@ -81,7 +81,7 @@ await TestServices.Editor.SetTextAsync(@"
});
}

[IdeFact]
[IdeFact(Skip = "https://github.com/dotnet/razor/issues/8150")]
public async Task Diagnostics_ShowErrors_CSharp()
{
// Arrange
Expand Down Expand Up @@ -113,7 +113,7 @@ await TestServices.Editor.SetTextAsync(@"
});
}

[IdeFact]
[IdeFact(Skip = "https://github.com/dotnet/razor/issues/8150")]
public async Task Diagnostics_ShowErrors_CSharp_NoDocType()
{
// Why this test, when we have the above test, and they seem so similar, and we also have Diagnostics_ShowErrors_CSharpAndHtml you ask? Well I'll tell you!
Expand Down Expand Up @@ -153,7 +153,7 @@ await TestServices.Editor.SetTextAsync(@"
});
}

[IdeFact]
[IdeFact(Skip = "https://github.com/dotnet/razor/issues/8150")]
public async Task Diagnostics_ShowErrors_CSharpAndHtml()
{
// Arrange
Expand Down