mirror of
https://github.com/immich-app/immich.git
synced 2025-01-08 12:56:48 +01:00
84f7ca855a
move domain interfaces
7 lines
219 B
TypeScript
7 lines
219 B
TypeScript
import { IServerInfoRepository } from 'src/interfaces/server-info.repository';
|
|
|
|
export const newServerInfoRepositoryMock = (): jest.Mocked<IServerInfoRepository> => {
|
|
return {
|
|
getGitHubRelease: jest.fn(),
|
|
};
|
|
};
|