30f499cf2e
update server to use absolute import paths
9 lines
251 B
TypeScript
9 lines
251 B
TypeScript
import { ISystemMetadataRepository } from 'src/domain/repositories/system-metadata.repository';
|
|
|
|
export const newSystemMetadataRepositoryMock = (): jest.Mocked<ISystemMetadataRepository> => {
|
|
return {
|
|
get: jest.fn(),
|
|
set: jest.fn(),
|
|
};
|
|
};
|