Fix fetch not using error system when unable to fetch #100

Merged
Vylpes merged 2 commits from feature/91-system-error into develop 2023-10-20 17:31:38 +01:00
Showing only changes of commit bc41162f38 - Show all commits

View file

@ -1,7 +1,7 @@
import { ErrorCode } from "../src/constants/ErrorCode"; import { ErrorCode } from "../src/constants/ErrorCode";
import ErrorMessages from "../src/constants/ErrorMessages"; import ErrorMessages from "../src/constants/ErrorMessages";
import randomBunny from "../src/index"; import randomBunny from "../src/index";
import fetch from "got-cjs"; import fetch, { CancelableRequest } from "got-cjs";
jest.mock('got-cjs'); jest.mock('got-cjs');
const fetchMock = jest.mocked(fetch); const fetchMock = jest.mocked(fetch);
@ -104,7 +104,7 @@ describe('randomBunny', () => {
}); });
test('GIVEN the fetch fails, EXPECT failure result', async () => { test('GIVEN the fetch fails, EXPECT failure result', async () => {
fetchMock.mockResolvedValue(null); fetchMock.mockRejectedValue('Test Reason')
const result = await randomBunny('rabbits', 'new'); const result = await randomBunny('rabbits', 'new');