From bd7079850a885e0855b0d4bb1a67e0e810cef2d7 Mon Sep 17 00:00:00 2001 From: Christoph Guttandin Date: Wed, 16 Oct 2024 19:25:49 +0200 Subject: [PATCH] test: increase timeout for Firefox v132 --- test/unit/audio-worklet-global-scope.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/unit/audio-worklet-global-scope.js b/test/unit/audio-worklet-global-scope.js index ded0a61f..2bf6d072 100644 --- a/test/unit/audio-worklet-global-scope.js +++ b/test/unit/audio-worklet-global-scope.js @@ -331,7 +331,9 @@ describe('AudioWorkletGlobalScope', () => { audioWorkletNode = new AudioWorkletNode(context, 'transferring-processor'); }); - it('should recover and continue calling process()', (done) => { + it('should recover and continue calling process()', function (done) { + this.timeout(10000); + let callCount = 0; audioWorkletNode.port.onmessage = () => {