Skip to content

Commit 4ee9feb

Browse files
committed
fix e2e test
Signed-off-by: Fabian Martinez <[email protected]>
1 parent c24897d commit 4ee9feb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/e2e/orchestration.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,13 +182,13 @@ describe("Durable Functions", () => {
182182
await taskHubWorker.start();
183183

184184
const id = await taskHubClient.scheduleNewOrchestration(orchestratorParent, SUB_ORCHESTRATION_COUNT);
185-
const state = await taskHubClient.waitForOrchestrationCompletion(id, undefined, 30);
185+
const state = await taskHubClient.waitForOrchestrationCompletion(id, undefined, 43);
186186

187187
expect(state);
188188
expect(state?.runtimeStatus).toEqual(OrchestrationStatus.ORCHESTRATION_STATUS_COMPLETED);
189189
expect(state?.failureDetails).toBeUndefined();
190190
expect(activityCounter).toEqual(SUB_ORCHESTRATION_COUNT * ACTIVITY_COUNT);
191-
}, 31000);
191+
}, 45000);
192192

193193
it("should allow waiting for multiple external events", async () => {
194194
const orchestrator: TOrchestrator = async function* (ctx: OrchestrationContext, _: any): any {

0 commit comments

Comments
 (0)