Skip to content

Commit

Permalink
test: increase timeouts for Safari v17.6
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisguttandin committed Oct 15, 2024
1 parent 7c103f7 commit f880096
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/unit/audio-nodes/biquad-filter-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ describe('BiquadFilterNode', () => {
afterEach(() => anotherContext.close?.());

beforeEach(function () {
this.timeout(5000);
this.timeout(10000);

anotherContext = createContext();

Expand Down
2 changes: 1 addition & 1 deletion test/unit/audio-nodes/dynamics-compressor-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ describe('DynamicsCompressorNode', () => {
afterEach(() => anotherContext.close?.());

beforeEach(function () {
this.timeout(5000);
this.timeout(10000);

anotherContext = createContext();

Expand Down
4 changes: 3 additions & 1 deletion test/unit/audio-nodes/panner-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -1477,7 +1477,9 @@ describe('PannerNode', () => {

afterEach(() => anotherContext.close?.());

beforeEach(() => {
beforeEach(function () {
this.timeout(10000);

anotherContext = createContext();

const gainNode = new GainNode(anotherContext);
Expand Down

0 comments on commit f880096

Please sign in to comment.