fix existing tests
This commit is contained in:
@@ -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(),
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user