aboutsummaryrefslogtreecommitdiffstats
path: root/web3.net.methods.js
blob: 97fddaa1292cf1182a767d1a07caf0eed4d83e73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
var chai = require('chai');
var assert = chai.assert; 
var web3 = require('../index.js');
var u = require('./helpers/test.utils.js');

describe('web3.net', function() {
    describe('methods', function() {
        u.propertyExists(web3.net, 'listening');
        u.propertyExists(web3.net, 'peerCount');
    });
});