mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
10 lines
277 B
TypeScript
10 lines
277 B
TypeScript
|
|
import { ISystemConfigRepository } from '../src';
|
||
|
|
|
||
|
|
export const newSystemConfigRepositoryMock = (): jest.Mocked<ISystemConfigRepository> => {
|
||
|
|
return {
|
||
|
|
load: jest.fn().mockResolvedValue([]),
|
||
|
|
saveAll: jest.fn().mockResolvedValue([]),
|
||
|
|
deleteKeys: jest.fn(),
|
||
|
|
};
|
||
|
|
};
|