Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion system-test/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ describe('Common', () => {
});

it('should retry a request', function (done) {
this.timeout(60 * 1000);
// We've increased the timeout to accommodate the retry backoff strategy.
// The test's retry attempts and the delay between them can exceed the default timeout,
// causing a false negative (test failure due to timeout instead of a logic error).
this.timeout(90 * 1000);

let numRequestAttempts = 0;

Expand Down
Loading