mirror of
https://github.com/immich-app/immich.git
synced 2025-03-30 12:49:38 +02: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(),
|
|
};
|
|
};
|