1
0
Fork 0
mirror of synced 2024-09-17 01:38:40 +12:00
budibase/packages/backend-core/tests/utilities/mocks/fetch.ts
2022-11-16 13:06:30 +00:00

10 lines
143 B
TypeScript

const mockFetch = jest.fn()
const enable = () => {
jest.mock("node-fetch", () => mockFetch)
}
export default {
...mockFetch,
enable,
}