UNPKG

interface-ipfs-core

Version:

A test suite and interface you can use to implement a IPFS core interface.

11 lines (8 loc) 235 B
import { createSuite } from '../utils/suite.js' import { testPublish } from './publish.js' import { testResolve } from './resolve.js' const tests = { publish: testPublish, resolve: testResolve } export default createSuite(tests)