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