Skip to content

Commit

Permalink
Increase timeout of no-server test for connection attempt time
Browse files Browse the repository at this point in the history
  • Loading branch information
murgatroid99 committed Dec 8, 2021
1 parent 8adf85c commit bec6fea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/grpc-js/test/test-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ describe('Client without a server', () => {
after(() => {
client.close();
});
it.only('should fail multiple calls to the nonexistent server', done => {
it('should fail multiple calls to the nonexistent server', function(done) {
this.timeout(5000);
// Regression test for https://github.com/grpc/grpc-node/issues/1411
client.makeUnaryRequest('/service/method', x => x, x => x, Buffer.from([]), (error, value) => {
assert(error);
Expand Down

0 comments on commit bec6fea

Please sign in to comment.