Skip to content
This repository was archived by the owner on Mar 3, 2026. It is now read-only.
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
7 changes: 6 additions & 1 deletion system-test/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ describe('storage', () => {
const storage = new Storage({
retryOptions: {
idempotencyStrategy: IdempotencyStrategy.RetryAlways,
retryDelayMultiplier: 3,
},
});
const bucket = storage.bucket(generateName());
Expand Down Expand Up @@ -225,6 +224,12 @@ describe('storage', () => {

describe('acls', () => {
describe('buckets', () => {
// Some bucket update operations have a rate limit.
// Introduce a delay between tests to avoid getting an error.
beforeEach(done => {
setTimeout(done, 1000);
});

it('should get access controls', async () => {
const accessControls = await bucket.acl.get();
assert(Array.isArray(accessControls));
Expand Down