From 4ee9feb326601e313bba2b566c9ae4d0301b3431 Mon Sep 17 00:00:00 2001 From: Fabian Martinez <46371672+famarting@users.noreply.github.com> Date: Mon, 25 Nov 2024 17:31:07 +0100 Subject: [PATCH] fix e2e test Signed-off-by: Fabian Martinez <46371672+famarting@users.noreply.github.com> --- test/e2e/orchestration.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/orchestration.spec.ts b/test/e2e/orchestration.spec.ts index 1860cf7..694beff 100644 --- a/test/e2e/orchestration.spec.ts +++ b/test/e2e/orchestration.spec.ts @@ -182,13 +182,13 @@ describe("Durable Functions", () => { await taskHubWorker.start(); const id = await taskHubClient.scheduleNewOrchestration(orchestratorParent, SUB_ORCHESTRATION_COUNT); - const state = await taskHubClient.waitForOrchestrationCompletion(id, undefined, 30); + const state = await taskHubClient.waitForOrchestrationCompletion(id, undefined, 43); expect(state); expect(state?.runtimeStatus).toEqual(OrchestrationStatus.ORCHESTRATION_STATUS_COMPLETED); expect(state?.failureDetails).toBeUndefined(); expect(activityCounter).toEqual(SUB_ORCHESTRATION_COUNT * ACTIVITY_COUNT); - }, 31000); + }, 45000); it("should allow waiting for multiple external events", async () => { const orchestrator: TOrchestrator = async function* (ctx: OrchestrationContext, _: any): any {