Skip to content

Commit

Permalink
test: additional retries for system tests (#748)
Browse files Browse the repository at this point in the history
Fixes #743, #744
  • Loading branch information
bcoe authored Jun 29, 2022
1 parent b893d0c commit bf66cda
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/google-cloud-compute/system-test/compute.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,8 @@ describe('Compute', () => {

it('instances patch', async function () {
this.timeout(10 * 60 * 1000);
this.retries(3);
await delay(this.test);
const [stopResponse] = await client.stop({
project,
zone,
Expand Down Expand Up @@ -326,6 +328,8 @@ describe('Compute', () => {

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

0 comments on commit bf66cda

Please sign in to comment.