Skip to content
This repository was archived by the owner on Mar 3, 2026. It is now read-only.

Commit 4467035

Browse files
authored
test: add retries (#2039)
1 parent f35a632 commit 4467035

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

system-test/storage.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,10 @@ describe('storage', () => {
7171
const RETENTION_DURATION_SECONDS = 10;
7272

7373
const storage = new Storage({
74-
retryOptions: {idempotencyStrategy: IdempotencyStrategy.RetryAlways},
74+
retryOptions: {
75+
idempotencyStrategy: IdempotencyStrategy.RetryAlways,
76+
retryDelayMultiplier: 3,
77+
},
7578
});
7679
const bucket = storage.bucket(generateName());
7780

@@ -152,7 +155,10 @@ describe('storage', () => {
152155
// eslint-disable-next-line @typescript-eslint/no-var-requires
153156
const {Storage} = require('../src');
154157
storageWithoutAuth = new Storage({
155-
retryOptions: {idempotencyStrategy: IdempotencyStrategy.RetryAlways},
158+
retryOptions: {
159+
idempotencyStrategy: IdempotencyStrategy.RetryAlways,
160+
retryDelayMultiplier: 3,
161+
},
156162
});
157163
});
158164

0 commit comments

Comments
 (0)