@@ -2479,8 +2479,8 @@ describe('RPCClient', function(){
2479
2479
withClient : async ( client ) => {
2480
2480
// send some rapid activity from the server
2481
2481
for ( let i = 0 ; i < 4 ; i ++ ) {
2482
- await client . call ( 'Echo' , { } ) ;
2483
2482
await setTimeout ( 25 ) ;
2483
+ await client . call ( 'Echo' , { } ) ;
2484
2484
}
2485
2485
await client . close ( ) ;
2486
2486
}
@@ -2490,7 +2490,7 @@ describe('RPCClient', function(){
2490
2490
identity : 'X' ,
2491
2491
reconnect : false ,
2492
2492
deferPingsOnActivity : true ,
2493
- pingIntervalMs : 40
2493
+ pingIntervalMs : 50
2494
2494
} ) ;
2495
2495
cli . handle ( 'Echo' , async ( { params} ) => {
2496
2496
return params ;
@@ -2517,8 +2517,8 @@ describe('RPCClient', function(){
2517
2517
withClient : async ( client ) => {
2518
2518
// send some rapid activity from the server
2519
2519
for ( let i = 0 ; i < 4 ; i ++ ) {
2520
- await client . call ( 'Echo' , { } ) ;
2521
2520
await setTimeout ( 25 ) ;
2521
+ await client . call ( 'Echo' , { } ) ;
2522
2522
}
2523
2523
await client . close ( ) ;
2524
2524
}
@@ -2528,7 +2528,7 @@ describe('RPCClient', function(){
2528
2528
identity : 'X' ,
2529
2529
reconnect : false ,
2530
2530
deferPingsOnActivity : false ,
2531
- pingIntervalMs : 40
2531
+ pingIntervalMs : 50
2532
2532
} ) ;
2533
2533
cli . handle ( 'Echo' , async ( { params} ) => {
2534
2534
return params ;
@@ -2567,7 +2567,7 @@ describe('RPCClient', function(){
2567
2567
identity : 'X' ,
2568
2568
reconnect : false ,
2569
2569
deferPingsOnActivity : true ,
2570
- pingIntervalMs : 40
2570
+ pingIntervalMs : 50
2571
2571
} ) ;
2572
2572
2573
2573
// count how many times we ping the server
@@ -2602,7 +2602,7 @@ describe('RPCClient', function(){
2602
2602
identity : 'X' ,
2603
2603
reconnect : false ,
2604
2604
deferPingsOnActivity : false ,
2605
- pingIntervalMs : 40
2605
+ pingIntervalMs : 50
2606
2606
} ) ;
2607
2607
2608
2608
// count how many times we ping the server
0 commit comments