mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
25 lines
791 B
TypeScript
25 lines
791 B
TypeScript
import { Mock } from 'ts-mockery';
|
|
import { AxiosInstance } from 'axios';
|
|
import { ImageDownloader } from '../../../src/common/services/ImageDownloader';
|
|
import { windowMock } from '../../mocks/WindowMock';
|
|
|
|
describe('ImageDownloader', () => {
|
|
const get = jest.fn();
|
|
const axios = Mock.of<AxiosInstance>({ get });
|
|
let imageDownloader: ImageDownloader;
|
|
|
|
beforeEach(() => {
|
|
jest.clearAllMocks();
|
|
(global as any).URL = { createObjectURL: () => '' };
|
|
|
|
imageDownloader = new ImageDownloader(axios, windowMock);
|
|
});
|
|
|
|
it('calls URL with response type blob', async () => {
|
|
get.mockResolvedValue({ data: {} });
|
|
|
|
await imageDownloader.saveImage('/foo/bar.png', 'my-image.png');
|
|
|
|
expect(get).toHaveBeenCalledWith('/foo/bar.png', { responseType: 'blob' });
|
|
});
|
|
});
|