UNPKG

interface-ipfs-core

Version:

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

13 lines (10 loc) 270 B
import { createSuite } from '../utils/suite.js' import { testBitswap } from './bitswap.js' import { testBw } from './bw.js' import { testRepo } from './repo.js' const tests = { bitswap: testBitswap, bw: testBw, repo: testRepo } export default createSuite(tests)