mirror of
https://github.com/status-im/op-geth.git
synced 2025-01-16 17:54:15 +00:00
14 lines
356 B
JavaScript
14 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');
|
|
});
|
|
|