From 26fa089ac084bc7e4fc5b0e9aeace26c77f34038 Mon Sep 17 00:00:00 2001 From: Benjamin Coe Date: Tue, 28 Jun 2022 17:41:08 -0400 Subject: [PATCH] test: additional retries for system tests Fixes #743, #744 --- system-test/compute.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/system-test/compute.js b/system-test/compute.js index 4cc58472..4bcff3fa 100644 --- a/system-test/compute.js +++ b/system-test/compute.js @@ -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, @@ -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,