mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-27 15:07:45 +00: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(),
|
|
};
|
|
};
|