interface-ipfs-core
Version:
A test suite and interface you can use to implement a IPFS core interface.
18 lines (14 loc) • 381 B
JavaScript
import { createSuite } from '../utils/suite.js'
import { testGen } from './gen.js'
import { testList } from './list.js'
import { testRename } from './rename.js'
import { testRm } from './rm.js'
import { testImport } from './import.js'
const tests = {
gen: testGen,
list: testList,
rename: testRename,
rm: testRm,
import: testImport
}
export default createSuite(tests)