mirror of
https://github.com/status-im/web3.js.git
synced 2025-02-23 19:48:13 +00:00
15 lines
357 B
JavaScript
15 lines
357 B
JavaScript
var chai = require('chai');
|
|
var assert = chai.assert;
|
|
var Eth = require('../packages/web3-eth');
|
|
|
|
var eth = new Eth();
|
|
|
|
describe('web3.eth', function () {
|
|
describe('defaultBlock', function () {
|
|
it('should check if defaultBlock is set to proper value', function () {
|
|
assert.equal(eth.defaultBlock, 'latest');
|
|
});
|
|
});
|
|
});
|
|
|