Files
outline/server/storage/files/__mocks__/index.ts
Apoorv Mishra 67b1fe5514 Local file storage (#5763)
Co-authored-by: Tom Moor <tom.moor@gmail.com>
2023-09-20 15:12:03 -07:00

12 lines
316 B
TypeScript

export default {
upload: jest.fn().mockReturnValue("/endpoint/key"),
getUploadUrl: jest.fn().mockReturnValue("http://mock/create"),
getUrlForKey: jest.fn().mockReturnValue("http://mock/get"),
getSignedUrl: jest.fn().mockReturnValue("http://s3mock"),
getPresignedPost: jest.fn().mockReturnValue({}),
};