Fix media code, clean up old types

This commit is contained in:
Jesse Wierzbinski 2024-03-10 13:57:26 -10:00
parent 852efaea50
commit 0e4d6b401c
No known key found for this signature in database
34 changed files with 137 additions and 1204 deletions

View file

@ -16,7 +16,6 @@ describe("MediaBackend", () => {
let mockConfig: ConfigType;
beforeEach(() => {
mediaBackend = new MediaBackend(MediaBackendType.S3);
mockConfig = {
media: {
conversion: {
@ -24,6 +23,7 @@ describe("MediaBackend", () => {
},
},
} as ConfigType;
mediaBackend = new MediaBackend(mockConfig, MediaBackendType.S3);
});
it("should initialize with correct backend type", () => {