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.
Tree:
8d6d0f84c1
cl-refactor
master
opencl1.1
v0.10.0
v0.10.0.dev2
v0.10.0.dev3
v0.10.0rc1
v0.10.0rc2
v0.10.0rc3
v0.10.0rc4
v0.11.0
v0.11.0rc1
v0.11.0rc2
${ noResults }
17 lines
497 B
17 lines
497 B
var chai = require('chai');
|
|||
var assert = chai.assert;
|
|||
var web3 = require('../index.js');
|
|||
var u = require('./helpers/test.utils.js');
|
|||
|
|||
describe('web3.shh', function() {
|
|||
describe('methods', function() {
|
|||
u.methodExists(web3.shh, 'post');
|
|||
u.methodExists(web3.shh, 'newIdentity');
|
|||
u.methodExists(web3.shh, 'hasIdentity');
|
|||
u.methodExists(web3.shh, 'newGroup');
|
|||
u.methodExists(web3.shh, 'addToGroup');
|
|||
u.methodExists(web3.shh, 'filter');
|
|||
});
|
|||
});
|
|||
|