Skip to content

Commit

Permalink
build: add more retries for flaky test (#766)
Browse files Browse the repository at this point in the history
* fix: add more retries for flaky test
  • Loading branch information
sofisl committed Jul 27, 2022
1 parent f260dee commit 55def8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/google-cloud-compute/system-test/compute.js
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ describe('Compute', () => {

it('instances update desc to an empty string', async function () {
this.timeout(10 * 60 * 1000);
this.retries(3);
this.retries(10);
await delay(this.test);
const [instance] = await client.get({
project,
Expand Down

0 comments on commit 55def8f

Please sign in to comment.