File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments