AzureIntegration 248 B

12345678910111213141516171819202122232425262728293031
  1. commit 2a64c1953da8d851df5c688e614bcd185c7fc052
  2. Author: Ryan Brandenburg <[email protected]>
  3. Date: Thu Mar 29 10:59:27 2018 -0700
  4. Skip broken tests
  5. diff --git a/test/ApplicationInsights.HostingStartup.Tests/JavaScriptSnippetTest.cs b/test/ApplicationInsights.HostingStartup.Tests/JavaScriptSnippetTest.cs
  6. index 087c4b9c8e2..1555325f0bb 100644
  7. --- a/test/ApplicationInsights.HostingStartup.Tests/JavaScriptSnippetTest.cs
  8. +++ b/test/ApplicationInsights.HostingStartup.Tests/JavaScriptSnippetTest.cs
  9. @@ -17,16 +17,16 @@ namespace ApplicationInsightsJavaScriptSnippetTest
  10. {
  11. }
  12. - [Fact]
  13. + [Fact(Skip="https://github.com/aspnet/AzureIntegration/issues/171")]
  14. public Task ScriptIsInjected_ForNetCoreApp20_Standalone() => JavaScriptSnippetInjectionTestSuite("netcoreapp2.0", ApplicationType.Standalone);
  15. - [Fact]
  16. + [Fact(Skip="https://github.com/aspnet/AzureIntegration/issues/171")]
  17. public Task ScriptIsInjected_ForNetCoreApp20_Portable() => JavaScriptSnippetInjectionTestSuite("netcoreapp2.0", ApplicationType.Portable);
  18. - [Fact]
  19. + [Fact(Skip="https://github.com/aspnet/AzureIntegration/issues/171")]
  20. public Task ScriptIsInjected_ForNetCoreApp21_Standalone() => JavaScriptSnippetInjectionTestSuite("netcoreapp2.1", ApplicationType.Standalone);
  21. - [Fact]
  22. + [Fact(Skip="https://github.com/aspnet/AzureIntegration/issues/171")]
  23. public Task ScriptIsInjected_ForNetCoreApp21_Portable() => JavaScriptSnippetInjectionTestSuite("netcoreapp2.1", ApplicationType.Portable);
  24. private async Task JavaScriptSnippetInjectionTestSuite(string targetFramework, ApplicationType applicationType)