Skip to content

Instantly share code, notes, and snippets.

View apssouza22's full-sized avatar
💭
Working in a new open source project

Alexsandro Souza apssouza22

💭
Working in a new open source project
View GitHub Profile
@iRoachie
iRoachie / index.test.ts
Last active March 5, 2024 13:07
Mocking node modules using typescript
import { mocked } from 'ts-jest/utils';
import fetch, { Response } from 'node-fetch';
import { test } from './index';
jest.mock('node-fetch');
it('It works', async () => {
console.log = jest.fn();