remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/test/index.js

12 lines
271 B

9 years ago
'use strict'
var tape = require('tape')
var init = require('../src/helpers/init')
9 years ago
tape('index', function (t) {
t.test('loadContext - web3', function (st) {
var web3 = init.loadWeb3()
st.notEqual(web3, undefined)
st.notEqual(web3, null)
9 years ago
st.end()
9 years ago
})
})