Skip to content

Commit

Permalink
test: increase timeout for Firefox v132
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisguttandin committed Oct 16, 2024
1 parent f880096 commit bd70798
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/unit/audio-worklet-global-scope.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = () => {
Expand Down

0 comments on commit bd70798

Please sign in to comment.