From 2732120f08bfbde06208a998ef6ab3ecdad5a196 Mon Sep 17 00:00:00 2001 From: pubkey <8926560+pubkey@users.noreply.github.com> Date: Thu, 2 Dec 2021 20:55:20 +0100 Subject: [PATCH] FIX ci --- test/integration.test.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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 + ); + } }); });