mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-31 11:08:12 -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 }
|
|
})
|