Skip to content

Commit

Permalink
Extend the timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljbruce committed Nov 28, 2024
1 parent 7a1d5c4 commit 7507560
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 7507560

Please sign in to comment.