@@ -551,19 +551,19 @@ module.exports = (common) => {
551
551
} )
552
552
} )
553
553
554
- describe ( 'load tests' , function ( ) {
554
+ describe ( 'light- load tests' , function ( ) {
555
555
before ( ( ) => {
556
- ipfs1 . pubsub . setMaxListeners ( 10 * 1000 )
557
- ipfs2 . pubsub . setMaxListeners ( 10 * 1000 )
556
+ ipfs1 . pubsub . setMaxListeners ( 10 * 10 )
557
+ ipfs2 . pubsub . setMaxListeners ( 10 * 10 )
558
558
} )
559
559
560
560
after ( ( ) => {
561
561
ipfs1 . pubsub . setMaxListeners ( 10 )
562
562
ipfs2 . pubsub . setMaxListeners ( 10 )
563
563
} )
564
564
565
- it ( 'call publish 1k times' , ( done ) => {
566
- const count = 1000
565
+ it ( 'call publish 10 times' , ( done ) => {
566
+ const count = 10
567
567
let sendCount = 0
568
568
const topic = getTopic ( )
569
569
@@ -597,11 +597,11 @@ module.exports = (common) => {
597
597
ipfs2 . pubsub . unsubscribe ( topic , sub2 )
598
598
} )
599
599
600
- it ( 'send/receive 10k messages' , function ( done ) {
600
+ it ( 'send/receive 100 messages' , function ( done ) {
601
601
this . timeout ( 2 * 60 * 1000 )
602
602
603
603
const msgBase = 'msg - '
604
- const count = 10000
604
+ const count = 100
605
605
let sendCount = 0
606
606
let receivedCount = 0
607
607
let startTime
@@ -621,7 +621,7 @@ module.exports = (common) => {
621
621
const duration = new Date ( ) . getTime ( ) - startTime
622
622
const opsPerSec = Math . floor ( count / ( duration / 1000 ) )
623
623
624
- console . log ( `Send/Receive 10k messages took: ${ duration } ms, ${ opsPerSec } ops / s\n` )
624
+ console . log ( `Send/Receive 100 messages took: ${ duration } ms, ${ opsPerSec } ops / s\n` )
625
625
626
626
check ( )
627
627
}
@@ -656,8 +656,8 @@ module.exports = (common) => {
656
656
} )
657
657
} )
658
658
659
- it ( 'call subscribe/unsubscribe 1k times' , ( done ) => {
660
- const count = 1000
659
+ it ( 'call subscribe/unsubscribe 10 times' , ( done ) => {
660
+ const count = 10
661
661
let sendCount = 0
662
662
const handlers = [ ]
663
663
0 commit comments