Skip to content

Commit 9de7896

Browse files
committed
increase rewind test timeout
1 parent b80fc95 commit 9de7896

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/e2e-azuremanaged/rewind.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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");

0 commit comments

Comments
 (0)