mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 02:49:01 -07:00
8ebac41318
* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
10 lines
282 B
TypeScript
10 lines
282 B
TypeScript
import { ISystemConfigRepository } from '@app/domain';
|
|
|
|
export const newSystemConfigRepositoryMock = (): jest.Mocked<ISystemConfigRepository> => {
|
|
return {
|
|
load: jest.fn().mockResolvedValue([]),
|
|
saveAll: jest.fn().mockResolvedValue([]),
|
|
deleteKeys: jest.fn(),
|
|
};
|
|
};
|