mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex.git
synced 2026-09-21 16:52:00 -07:00
14 lines
210 B
JavaScript
14 lines
210 B
JavaScript
/*
|
|
Mocking library for helia.
|
|
This is used to replace the helia library when running unit tests.
|
|
*/
|
|
|
|
const ipfs = {
|
|
libp2p: {
|
|
getMultiaddrs: () => [],
|
|
peerId: 'fake-id'
|
|
}
|
|
}
|
|
|
|
export default ipfs
|