From a32887aec4a2f351430fe01459c69d028f2d202b Mon Sep 17 00:00:00 2001 From: Ajay Bhargav B Date: Thu, 30 Jan 2020 18:24:32 -0800 Subject: [PATCH] Sync client settings with LSP server (dotnet/aspnetcore-tooling#1549) * Sync client settings with LSP server * feedback * Skip flaky test https://github.com/dotnet/aspnetcore/issues/18707 * Cleanup * Make it abstract for consistency \n\nCommit migrated from https://github.com/dotnet/aspnetcore-tooling/commit/9a05bd16c6f075f90ae2fe7ae0b9ab03199eb9b6 --- .../test/IntegrationTests/StaticWebAssetsIntegrationTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Razor/Microsoft.NET.Sdk.Razor/test/IntegrationTests/StaticWebAssetsIntegrationTest.cs b/src/Razor/Microsoft.NET.Sdk.Razor/test/IntegrationTests/StaticWebAssetsIntegrationTest.cs index da3d6c99c1..b87b87a662 100644 --- a/src/Razor/Microsoft.NET.Sdk.Razor/test/IntegrationTests/StaticWebAssetsIntegrationTest.cs +++ b/src/Razor/Microsoft.NET.Sdk.Razor/test/IntegrationTests/StaticWebAssetsIntegrationTest.cs @@ -109,7 +109,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests Assert.FileDoesNotExist(result, publishOutputPath, "AppWithPackageAndP2PReference.StaticWebAssets.xml"); } - [Fact] + [Fact(Skip = "flaky test: https://github.com/dotnet/aspnetcore/issues/18707")] [InitializeTestProject("AppWithPackageAndP2PReference", additionalProjects: new[] { "ClassLibrary", "ClassLibrary2" })] public async Task Publish_WithBuildReferencesDisabled_CopiesStaticWebAssetsToDestinationFolder() {