Skip to content

Commit

Permalink
chore: fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
birme committed Jul 2, 2024
1 parent 73738a6 commit d3d8f4c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/encorePackager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ describe('Test parseInputsFromEncoreJob', () => {
output: [
{
file: '/data/out/e5e76304-744c-41d6-85f7-69007b3b1a65/test3_x264_3100.mp4',
format: 'mp4',
fileSize: 3757912,
overallBitrate: 2982469,
videoStreams: [
Expand All @@ -19,7 +20,8 @@ describe('Test parseInputsFromEncoreJob', () => {
audioStreams: [],
type: 'VideoFile'
}
]
],
inputs: []
};
const inputs = parseInputsFromEncoreJob(job);
console.log(inputs);
Expand Down

0 comments on commit d3d8f4c

Please sign in to comment.