Skip to content

Commit 9c35f78

Browse files
committed
enabling cosmosdb node tests
1 parent 8599a41 commit 9c35f78

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

src/WebJobs.Script.WebHost/WebJobs.Script.WebHost.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@
3737
<PackageReference Include="Microsoft.Azure.AppService.Proxy.Client.Contract" Version="0.3.1.1">
3838
<NoWarn>NU1701</NoWarn>
3939
</PackageReference>
40-
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.0-beta4-11241" />
40+
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.0-beta4-11268" />
4141
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="3.0.0-beta4-10578" />
4242
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.0-beta4-10578">
4343
<NoWarn>NU1701</NoWarn>
4444
</PackageReference>
45-
<PackageReference Include="Microsoft.Azure.WebJobs.Logging" Version="3.0.0-beta4-11241" />
46-
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.0-beta4-11241" />
45+
<PackageReference Include="Microsoft.Azure.WebJobs.Logging" Version="3.0.0-beta4-11268" />
46+
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.0-beta4-11268" />
4747
<PackageReference Include="Microsoft.Azure.WebSites.DataProtection" Version="2.1.88-alpha" />
4848
<PackageReference Include="System.Net.Primitives" Version="4.3.0" />
4949
<PackageReference Include="WindowsAzure.Storage" Version="8.6.0" />

src/WebJobs.Script/WebJobs.Script.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
<PackageReference Include="Microsoft.Azure.Functions.NodeJsWorker" Version="1.0.0-beta1-10026">
2626
<PrivateAssets>None</PrivateAssets>
2727
</PackageReference>
28-
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.0-beta4-11241" />
28+
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.0-beta4-11268" />
2929
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="3.0.0-beta4-10578" />
3030
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.0-beta4-10578">
3131
<NoWarn>NU1701</NoWarn>
3232
</PackageReference>
33-
<PackageReference Include="Microsoft.Azure.WebJobs.Logging" Version="3.0.0-beta4-11241" />
34-
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.0-beta4-11241" />
33+
<PackageReference Include="Microsoft.Azure.WebJobs.Logging" Version="3.0.0-beta4-11268" />
34+
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.0-beta4-11268" />
3535
<PackageReference Include="Microsoft.Build" Version="15.3.409" />
3636
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="2.4.0" />
3737
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.0.0" />

test/WebJobs.Script.Tests.Integration/CosmosDBTrigger/CosmosDBTriggerNodeEndToEndTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public CosmosDBTriggerNodeEndToEndTests(TestFixture fixture) : base(fixture)
1313
{
1414
}
1515

16-
[Fact(Skip = "Non-.NET CosmosDBTrigger not currently supported")]
16+
[Fact]
1717
public Task CosmosDBTrigger()
1818
{
1919
return CosmosDBTriggerToBlobTest();

test/WebJobs.Script.Tests.Integration/WebHostEndToEnd/EndToEndTestFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ protected EndToEndTestFixture(string rootPath, string testId)
4747

4848
Host = new TestFunctionHost(_copiedRootPath);
4949
Host.SetNugetPackageSources("http://www.myget.org/F/azure-appservice/api/v2", "https://api.nuget.org/v3/index.json");
50-
Host.InstallBindingExtension("Microsoft.Azure.WebJobs.Extensions.CosmosDB", "3.0.0-beta7-10595").Wait();
50+
Host.InstallBindingExtension("Microsoft.Azure.WebJobs.Extensions.CosmosDB", "3.0.0-beta7-10602").Wait();
5151

5252
// TODO: Find a better way to ensure extensions have installed and host has initiated restart.
5353
Task.Delay(3000).Wait();

test/WebJobs.Script.Tests.Integration/WebHostEndToEnd/NodeEndToEndTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public async Task TableOutput()
130130
await TableOutputTest();
131131
}
132132

133-
[Fact(Skip = "Non-.NET languages not currently supported.")]
133+
[Fact]
134134
public async Task CosmosDB()
135135
{
136136
await CosmosDBTest();

0 commit comments

Comments
 (0)