Skip to content

Commit

Permalink
test: run more test iterations
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisguttandin committed Oct 30, 2024
1 parent 4dd675b commit 084575b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/expectation/chrome/canary/media-recorder.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe('MediaRecorder', () => {
this.timeout(10000);

expect(
(await Promise.all(Array.from({ length: 200 }, () => recordAboutASecondOfAudio(audioContext)))).sort().pop()
(await Promise.all(Array.from({ length: 2000 }, () => recordAboutASecondOfAudio(audioContext)))).sort().pop()
).to.be.above(1);
});
});
Expand Down
2 changes: 1 addition & 1 deletion test/expectation/chrome/current/media-recorder.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe('MediaRecorder', () => {
this.timeout(10000);

expect(
(await Promise.all(Array.from({ length: 200 }, () => recordAboutASecondOfAudio(audioContext)))).sort().pop()
(await Promise.all(Array.from({ length: 2000 }, () => recordAboutASecondOfAudio(audioContext)))).sort().pop()
).to.be.above(1);
});
});
Expand Down
2 changes: 1 addition & 1 deletion test/expectation/chrome/penultimate/media-recorder.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe('MediaRecorder', () => {
this.timeout(10000);

expect(
(await Promise.all(Array.from({ length: 200 }, () => recordAboutASecondOfAudio(audioContext)))).sort().pop()
(await Promise.all(Array.from({ length: 2000 }, () => recordAboutASecondOfAudio(audioContext)))).sort().pop()
).to.be.above(1);
});
});
Expand Down
2 changes: 1 addition & 1 deletion test/expectation/chrome/previous/media-recorder.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe('MediaRecorder', () => {
this.timeout(10000);

expect(
(await Promise.all(Array.from({ length: 200 }, () => recordAboutASecondOfAudio(audioContext)))).sort().pop()
(await Promise.all(Array.from({ length: 2000 }, () => recordAboutASecondOfAudio(audioContext)))).sort().pop()
).to.be.above(1);
});
});
Expand Down

0 comments on commit 084575b

Please sign in to comment.