Skip to content

Commit

Permalink
bug: extend jest timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
cgilly2fast committed Aug 29, 2024
1 parent 321f10d commit 8537e46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev/plugin.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ describe('Plugin tests', () => {
expect(createdMedia.mimeType).toBe('video/mp4')
expect(createdMedia.filesize).toBe(testVideoBuffer.byteLength)
expect(createdMedia.alt).toBe('Ligma Test')
}, 40000)
}, 70000)

it('standard video outputs are present', () => {
const resolutions = [144, 240, 360, 480, 720]
Expand Down Expand Up @@ -122,7 +122,7 @@ describe('Plugin tests', () => {
expect(createdMedia.mimeType).toBe('video/mp4')
expect(createdMedia.filesize).toBe(testVideoBuffer.byteLength)
expect(createdMedia.alt).toBe('Ligma Test')
}, 40000)
}, 70000)

it('custom video outputs are present', () => {
const resolutions = [144, 240, 300]
Expand Down

0 comments on commit 8537e46

Please sign in to comment.