Skip to content

Commit bf66cda

Browse files
author
Benjamin E. Coe
authored
test: additional retries for system tests (#748)
Fixes #743, #744
1 parent b893d0c commit bf66cda

File tree

1 file changed

+4
-0
lines changed
  • packages/google-cloud-compute/system-test

1 file changed

+4
-0
lines changed

packages/google-cloud-compute/system-test/compute.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,8 @@ describe('Compute', () => {
281281

282282
it('instances patch', async function () {
283283
this.timeout(10 * 60 * 1000);
284+
this.retries(3);
285+
await delay(this.test);
284286
const [stopResponse] = await client.stop({
285287
project,
286288
zone,
@@ -326,6 +328,8 @@ describe('Compute', () => {
326328

327329
it('instances update desc to an empty string', async function () {
328330
this.timeout(10 * 60 * 1000);
331+
this.retries(3);
332+
await delay(this.test);
329333
const [instance] = await client.get({
330334
project,
331335
zone,

0 commit comments

Comments
 (0)