Skip to content

Commit

Permalink
bug: reconfigure timeout lengths
Browse files Browse the repository at this point in the history
  • Loading branch information
cgilly2fast committed Aug 29, 2024
1 parent c8b7032 commit 321f10d
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 @@ -42,7 +42,7 @@ describe('Plugin tests', () => {
},
data: { alt: 'Ligma Test' },
})
await new Promise(resolve => setTimeout(resolve, 30000))
await new Promise(resolve => setTimeout(resolve, 50000))
expect(createdMedia).toBeTruthy()
expect(createdMedia.id).toBeDefined()
expect(createdMedia.filename).toBe('testVideo.mp4')
Expand Down Expand Up @@ -213,7 +213,7 @@ describe('Plugin tests', () => {
},
},
})
await new Promise(resolve => setTimeout(resolve, 50000))
await new Promise(resolve => setTimeout(resolve, 3000))

const resolutions = [144, 240, 300]
const exceptedNumSegments = 13
Expand Down

0 comments on commit 321f10d

Please sign in to comment.