Skip to content

Commit 3a1a3d3

Browse files
committed
fix: Add 60s timeout to rewind E2E test to prevent timeout failure
1 parent 7e7db5d commit 3a1a3d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/e2e-azuremanaged/rewind.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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)