mirror of
https://github.com/immich-app/immich.git
synced 2025-03-01 15:11:21 +01:00
7 lines
228 B
TypeScript
7 lines
228 B
TypeScript
import { IServerInfoRepository } from 'src/domain/repositories/server-info.repository';
|
|
|
|
export const newServerInfoRepositoryMock = (): jest.Mocked<IServerInfoRepository> => {
|
|
return {
|
|
getGitHubRelease: jest.fn(),
|
|
};
|
|
};
|