UNPKG

ethjs-contract-boilerplate

Version:

An Ethereum contract boilerplate using EthJS, wafr and ethdeploy.

12 lines (10 loc) 284 B
const assert = require('chai').assert; const contracts = require('../index.js'); describe('contracts', () => { describe('construction', () => { it('should have constructed properly', () => { assert.isOk(contracts); assert.isOk(contracts.testrpc); }); }); });