mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +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(),
|
|
};
|
|
};
|