diff --git a/test/integration.test.js b/test/integration.test.js index 935ca100..66041368 100644 --- a/test/integration.test.js +++ b/test/integration.test.js @@ -782,10 +782,12 @@ function runTest(channelOptions) { }); describe('final', () => { it('should have closed all channels', () => { - assert.strictEqual( - OPEN_BROADCAST_CHANNELS.size, - 0 - ); + if (isNode) { + assert.strictEqual( + OPEN_BROADCAST_CHANNELS.size, + 0 + ); + } }); });