interface-ipfs-core
Version:
A test suite and interface you can use to implement a IPFS core interface.
17 lines (14 loc) • 383 B
JavaScript
import { createSuite } from '../../utils/suite.js'
import { testService } from './service.js'
import { testAdd } from './add.js'
import { testLs } from './ls.js'
import { testRm } from './rm.js'
import { testRmAll } from './rm-all.js'
const tests = {
service: testService,
add: testAdd,
ls: testLs,
rm: testRm,
rmAll: testRmAll
}
export default createSuite(tests, 'pin')