Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

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 ab4bc9f commit 6ce7e91
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions 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 6ce7e91

Please sign in to comment.