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