mirror of https://github.com/grpc/grpc-node.git
Merge pull request #1806 from jtattermusch/node_emulator_experiment
Increase timeout for tests that timeout under emulator (part 2)
This commit is contained in:
commit
7354ff5b58
|
|
@ -147,7 +147,8 @@ describe(`${anyGrpc.clientName} client -> ${anyGrpc.serverName} server`, functio
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
it('should receive all messages in a long stream', function(done) {
|
it('should receive all messages in a long stream', function(done) {
|
||||||
this.timeout(20000);
|
// the test is slow under aarch64 emulator
|
||||||
|
this.timeout(80000);
|
||||||
var arg = {
|
var arg = {
|
||||||
response_type: 'COMPRESSABLE',
|
response_type: 'COMPRESSABLE',
|
||||||
response_parameters: [
|
response_parameters: [
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue