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

Commit 22138d9

Browse files
author
Alan Shaw
committed
fix: in Firefox it 5
License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent 408e4fe commit 22138d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pubsub/unsubscribe.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ module.exports = (createCommon, options) => {
3232

3333
after((done) => common.teardown(done))
3434

35-
// Browser/worker has max ~6 open HTTP requests to the same origin
36-
const count = isBrowser || isWebWorker ? 6 : 10
35+
// Browser/worker has max ~5 open HTTP requests to the same origin
36+
const count = isBrowser || isWebWorker ? 5 : 10
3737

3838
it(`should subscribe and unsubscribe ${count} times`, async () => {
3939
const someTopic = getTopic()

0 commit comments

Comments
 (0)