Files
ipfs-bch-wallet-service/test/unit/mocks/adapters/index.js
T

21 lines
246 B
JavaScript
Raw Normal View History

/*
Mocks for the Adapter library.
*/
const ipfs = {
ipfsAdapter: {
ipfs: {}
},
ipfsCoordAdapter: {
ipfsCoord: {}
}
}
2021-07-10 09:57:25 -07:00
const localdb = {
Users: class Users {
static findById () {}
}
}
module.exports = { ipfs, localdb }