This commit is contained in:
HaveAGitGat 2022-05-21 15:19:05 +01:00
parent 8f442d4bbf
commit 7511d748e7

View file

@ -17,7 +17,7 @@ const tests = [
FFmpegMode: true, FFmpegMode: true,
reQueueAfter: true, reQueueAfter: true,
infoLog: 'File is not in mkv \n', infoLog: 'File is not in mkv \n',
handbrakeMode: false handbrakeMode: false,
}, },
}, },
{ {
@ -25,7 +25,7 @@ const tests = [
file: require('../sampleData/media/sampleH264_1.json'), file: require('../sampleData/media/sampleH264_1.json'),
librarySettings: {}, librarySettings: {},
inputs: { inputs: {
container: 'mkv' container: 'mkv',
}, },
otherArguments: {}, otherArguments: {},
}, },
@ -37,7 +37,7 @@ const tests = [
FFmpegMode: true, FFmpegMode: true,
reQueueAfter: true, reQueueAfter: true,
infoLog: 'File is not in mkv \n', infoLog: 'File is not in mkv \n',
handbrakeMode: false handbrakeMode: false,
}, },
}, },
{ {
@ -45,7 +45,7 @@ const tests = [
file: require('../sampleData/media/sampleH264_1.json'), file: require('../sampleData/media/sampleH264_1.json'),
librarySettings: {}, librarySettings: {},
inputs: { inputs: {
container: 'mp4' container: 'mp4',
}, },
otherArguments: {}, otherArguments: {},
}, },
@ -57,7 +57,7 @@ const tests = [
FFmpegMode: true, FFmpegMode: true,
reQueueAfter: true, reQueueAfter: true,
infoLog: 'File is already in mp4 \n', infoLog: 'File is already in mp4 \n',
handbrakeMode: false handbrakeMode: false,
}, },
}, },
]; ];