fix existing tests

This commit is contained in:
mgabor
2024-04-17 10:21:17 +02:00
parent e1ea436c5e
commit 02eeee8a2b
4 changed files with 77 additions and 25 deletions
@@ -0,0 +1,9 @@
import { IAlbumUserRepository } from 'src/interfaces/album-user.interface';
export const newAlbumUserRepositoryMock = (): jest.Mocked<IAlbumUserRepository> => {
return {
create: jest.fn(),
delete: jest.fn(),
update: jest.fn(),
};
};