Add AlbumCard UI tests

- add libraries for component UI testing
- implement AlbumCard UI tests
This commit is contained in:
Jaime Baez 2022-09-07 16:00:57 +02:00
parent 92c4f0598b
commit f476bd985b
6 changed files with 506 additions and 10 deletions

View file

@ -0,0 +1,8 @@
const createObjectURLMock = jest.fn();
Object.defineProperty(URL, 'createObjectURL', {
writable: true,
value: createObjectURLMock
});
export { createObjectURLMock };