File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ describe("Rewind Instance E2E Tests", () => {
168168 // No need to start worker for this test
169169 // Will throw either "not found" or "not supported" depending on backend
170170 await expect ( taskHubClient . rewindInstance ( nonExistentId , "Test rewind" ) ) . rejects . toThrow ( ) ;
171- } ) ;
171+ } , 60000 ) ;
172172
173173 it ( "should throw an error when rewinding a completed orchestration (or if rewind is not supported)" , async ( ) => {
174174 const instanceId = generateUniqueInstanceId ( "rewind-completed" ) ;
@@ -183,7 +183,7 @@ describe("Rewind Instance E2E Tests", () => {
183183
184184 // Try to rewind a completed orchestration - should fail
185185 await expect ( taskHubClient . rewindInstance ( instanceId , "Test rewind" ) ) . rejects . toThrow ( ) ;
186- } ) ;
186+ } , 60000 ) ;
187187
188188 it . skip ( "should throw an error when rewinding a running orchestration (requires backend support)" , async ( ) => {
189189 const instanceId = generateUniqueInstanceId ( "rewind-running" ) ;
You can’t perform that action at this time.
0 commit comments