mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-27 16:17:22 +00:00
13 lines
356 B
JavaScript
13 lines
356 B
JavaScript
var assert = require('assert');
|
|
var web3 = require('../index.js');
|
|
var u = require('./utils.js');
|
|
|
|
describe('web3', function() {
|
|
u.methodExists(web3, 'sha3');
|
|
u.methodExists(web3, 'toAscii');
|
|
u.methodExists(web3, 'fromAscii');
|
|
u.methodExists(web3, 'toFixed');
|
|
u.methodExists(web3, 'fromFixed');
|
|
u.methodExists(web3, 'offset');
|
|
});
|
|
|