From 7507560690b7542ac7f5d844e9f0aa29524f0e9b Mon Sep 17 00:00:00 2001 From: Daniel Bruce Date: Thu, 28 Nov 2024 16:03:33 -0500 Subject: [PATCH] Extend the timeout --- test/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/index.ts b/test/index.ts index 929c64df0..f7b6f481f 100644 --- a/test/index.ts +++ b/test/index.ts @@ -1216,7 +1216,8 @@ describe('Bigtable', () => { }); }); describe('close', () => { - it('should have failed request after close is called', done => { + it('should have failed request after close is called', function (done) { + this.timeout(300000); // Closing and initializing the client takes a long time on kokoro. console.log('before close'); bigtable .close()