Up timeout

This commit is contained in:
Vanilagy
2026-07-29 11:49:37 +02:00
parent 90ec40166f
commit 4e4603ed83
+4 -4
View File
@@ -28,7 +28,7 @@ test.concurrent('ProRes MOV file reading', async () => {
expect(decoderConfig.description).toBeUndefined(); expect(decoderConfig.description).toBeUndefined();
}); });
test.concurrent('ProRes transmuxing into MOV', { timeout: 10_000 }, async () => { test.concurrent('ProRes transmuxing into MOV', { timeout: 20_000 }, async () => {
using input = new Input({ using input = new Input({
source: new UrlSource(SAMPLE_URL), source: new UrlSource(SAMPLE_URL),
formats: ALL_FORMATS, formats: ALL_FORMATS,
@@ -65,7 +65,7 @@ test.concurrent('ProRes transmuxing into MOV', { timeout: 10_000 }, async () =>
expect(decoderConfig.description).toBeUndefined(); expect(decoderConfig.description).toBeUndefined();
}); });
test.concurrent('ProRes transmuxing into MKV', { timeout: 10_000 }, async () => { test.concurrent('ProRes transmuxing into MKV', { timeout: 20_000 }, async () => {
using input = new Input({ using input = new Input({
source: new UrlSource(SAMPLE_URL), source: new UrlSource(SAMPLE_URL),
formats: ALL_FORMATS, formats: ALL_FORMATS,
@@ -114,7 +114,7 @@ test.concurrent('ProRes transmuxing into MKV', { timeout: 10_000 }, async () =>
expect(str.includes('icpf')).toBe(true); expect(str.includes('icpf')).toBe(true);
}); });
test('Custom coder registration', { timeout: 10_000 }, async () => { test('Custom coder registration', { timeout: 20_000 }, async () => {
using input = new Input({ using input = new Input({
source: new UrlSource(SAMPLE_URL), source: new UrlSource(SAMPLE_URL),
formats: ALL_FORMATS, formats: ALL_FORMATS,
@@ -131,7 +131,7 @@ test('Custom coder registration', { timeout: 10_000 }, async () => {
expect(await videoTrack.canDecode()).toBe(true); expect(await videoTrack.canDecode()).toBe(true);
}); });
test('ProRes decoding', { timeout: 10_000 }, async () => { test('ProRes decoding', { timeout: 20_000 }, async () => {
registerProresDecoder(); registerProresDecoder();
using input = new Input({ using input = new Input({