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