UNPKG

interface-ipfs-core

Version:

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

15 lines (12 loc) 393 B
import { createSuite } from '../../utils/suite.js' import { testAddLink } from './add-link.js' import { testRmLink } from './rm-link.js' import { testAppendData } from './append-data.js' import { testSetData } from './set-data.js' const tests = { addLink: testAddLink, rmLink: testRmLink, appendData: testAppendData, setData: testSetData } export default createSuite(tests, 'patch')