interface-ipfs-core
Version:
A test suite and interface you can use to implement a IPFS core interface.
17 lines (14 loc) • 462 B
JavaScript
import { createSuite } from '../utils/suite.js'
import { testStat } from './stat.js'
import { testWantlist } from './wantlist.js'
import { testWantlistForPeer } from './wantlist-for-peer.js'
import { testTransfer } from './transfer.js'
import { testUnwant } from './unwant.js'
const tests = {
stat: testStat,
wantlist: testWantlist,
wantlistForPeer: testWantlistForPeer,
transfer: testTransfer,
unwant: testUnwant
}
export default createSuite(tests)