mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 20:36:48 +01:00
b588a87d4a
rename domain repositories
7 lines
218 B
TypeScript
7 lines
218 B
TypeScript
import { IServerInfoRepository } from 'src/interfaces/server-info.interface';
|
|
|
|
export const newServerInfoRepositoryMock = (): jest.Mocked<IServerInfoRepository> => {
|
|
return {
|
|
getGitHubRelease: jest.fn(),
|
|
};
|
|
};
|