mirror of
https://github.com/arcodange-org/mediabunny.git
synced 2026-09-27 19:03:46 +02:00
Up timeout
This commit is contained in:
@@ -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({
|
||||
|
||||
Reference in New Issue
Block a user