UNPKG

@0xcert/ethereum-sandbox

Version:

Test server for local running testing of modules on the Ethereum blockchain.

12 lines (8 loc) 219 B
import { Spec } from '@hayspec/spec'; import * as sandbox from '..'; const spec = new Spec(); spec.test('exposes objects', (t) => { t.true(!!sandbox.Sandbox); t.true(!!sandbox.Protocol); }); export default spec;