From 4e4603ed8358d1214f9782b9b4e14df52dc99b58 Mon Sep 17 00:00:00 2001 From: Vanilagy <1696106+Vanilagy@users.noreply.github.com> Date: Wed, 29 Jul 2026 11:49:37 +0200 Subject: [PATCH] Up timeout --- test/node/prores.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/node/prores.test.ts b/test/node/prores.test.ts index 682cd93..1323c5a 100644 --- a/test/node/prores.test.ts +++ b/test/node/prores.test.ts @@ -28,7 +28,7 @@ test.concurrent('ProRes MOV file reading', async () => { 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({ source: new UrlSource(SAMPLE_URL), formats: ALL_FORMATS, @@ -65,7 +65,7 @@ test.concurrent('ProRes transmuxing into MOV', { timeout: 10_000 }, async () => 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({ source: new UrlSource(SAMPLE_URL), formats: ALL_FORMATS, @@ -114,7 +114,7 @@ test.concurrent('ProRes transmuxing into MKV', { timeout: 10_000 }, async () => 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({ source: new UrlSource(SAMPLE_URL), formats: ALL_FORMATS, @@ -131,7 +131,7 @@ test('Custom coder registration', { timeout: 10_000 }, async () => { expect(await videoTrack.canDecode()).toBe(true); }); -test('ProRes decoding', { timeout: 10_000 }, async () => { +test('ProRes decoding', { timeout: 20_000 }, async () => { registerProresDecoder(); using input = new Input({