fix: ffmpeg args (#469)

This commit is contained in:
Emrik Östling 2025-12-14 13:43:20 +01:00 committed by GitHub
parent eabd6e6a7f
commit 12a5580694
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 4 deletions

View file

@ -135,7 +135,7 @@ test("respects FFMPEG_ARGS", async () => {
console.log = originalConsoleLog;
expect(calls[0]?.slice(0, 2)).toEqual(["-hide_banner", "-y"]);
expect(calls[0]?.slice(2, 4)).toEqual(["-hide_banner", "-y"]);
expect(loggedMessage).toBe("stdout: Fake stdout");
});