Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 8ca5429

Browse files
test: skip some tests because pubsub does not make any gaurantee on message deliery
1 parent 36674d9 commit 8ca5429

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pubsub.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ module.exports = (common) => {
493493
})
494494
})
495495

496-
it('receive multiple messages', (done) => {
496+
it.skip('receive multiple messages', (done) => {
497497
const inbox1 = []
498498
const inbox2 = []
499499
const outbox = ['hello', 'world', 'this', 'is', 'pubsub']
@@ -561,7 +561,7 @@ module.exports = (common) => {
561561
)
562562
})
563563

564-
it('send/receive 10k messages', (done) => {
564+
it.skip('send/receive 10k messages', (done) => {
565565
this.timeout(2 * 60 * 1000)
566566

567567
const msgBase = 'msg - '

0 commit comments

Comments
 (0)