mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-01 03:28:14 -05:00
7 lines
184 B
JavaScript
7 lines
184 B
JavaScript
module.exports = jest.createMockFromModule('@pnpm/fetch')
|
|
|
|
// default implementation
|
|
module.exports.fetchWithAgent.mockImplementation(async (_url, _opts) => {
|
|
return { ok: true }
|
|
})
|