interface-ipfs-core
Version:
A test suite and interface you can use to implement a IPFS core interface.
15 lines (12 loc) • 305 B
JavaScript
import { createSuite } from '../utils/suite.js'
import { testGet } from './get.js'
import { testPut } from './put.js'
import { testRm } from './rm.js'
import { testStat } from './stat.js'
const tests = {
get: testGet,
put: testPut,
rm: testRm,
stat: testStat
}
export default createSuite(tests)