We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19f8a32 commit b38b5d2Copy full SHA for b38b5d2
system-test/common.ts
@@ -57,7 +57,10 @@ describe('Common', () => {
57
});
58
59
it('should retry a request', function (done) {
60
- this.timeout(60 * 1000);
+ // We've increased the timeout to accommodate the retry backoff strategy.
61
+ // The test's retry attempts and the delay between them can exceed the default timeout,
62
+ // causing a false negative (test failure due to timeout instead of a logic error).
63
+ this.timeout(90 * 1000);
64
65
let numRequestAttempts = 0;
66
0 commit comments