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 { testVersion } from './version.js' import { testStat } from './stat.js' import { testGc } from './gc.js' const tests = { version: testVersion, stat: testStat, gc: testGc } export default createSuite(tests)