interface-ipfs-core
Version:
A test suite and interface you can use to implement a IPFS core interface.
15 lines (12 loc) • 325 B
JavaScript
import { createSuite } from '../utils/suite.js'
import { testGet } from './get.js'
import { testSet } from './set.js'
import { testReplace } from './replace.js'
import profiles from './profiles/index.js'
const tests = {
get: testGet,
set: testSet,
replace: testReplace,
profiles
}
export default createSuite(tests)