mirror of
https://github.com/immich-app/immich.git
synced 2024-12-23 02:06:15 +02:00
b588a87d4a
rename domain repositories
8 lines
218 B
TypeScript
8 lines
218 B
TypeScript
import { IServerInfoRepository } from 'src/interfaces/server-info.interface';
|
|
|
|
export const newServerInfoRepositoryMock = (): jest.Mocked<IServerInfoRepository> => {
|
|
return {
|
|
getGitHubRelease: jest.fn(),
|
|
};
|
|
};
|