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

11 lines
293 B

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