aboutsummaryrefslogtreecommitdiffstats
path: root/shh.methods.js
diff options
context:
space:
mode:
Diffstat (limited to 'shh.methods.js')
-rw-r--r--shh.methods.js12
1 files changed, 5 insertions, 7 deletions
diff --git a/shh.methods.js b/shh.methods.js
index 08f573a3..f2f56edb 100644
--- a/shh.methods.js
+++ b/shh.methods.js
@@ -7,13 +7,11 @@ web3.setProvider(new web3.providers.WebSocketProvider('http://localhost:8080'));
describe('web3', function() {
describe('shh', function() {
- it('should have all methods implemented', function() {
- u.methodExists(web3.shh, 'post');
- u.methodExists(web3.shh, 'newIdentity');
- u.methodExists(web3.shh, 'haveIdentity');
- u.methodExists(web3.shh, 'newGroup');
- u.methodExists(web3.shh, 'addToGroup');
- });
+ u.methodExists(web3.shh, 'post');
+ u.methodExists(web3.shh, 'newIdentity');
+ u.methodExists(web3.shh, 'haveIdentity');
+ u.methodExists(web3.shh, 'newGroup');
+ u.methodExists(web3.shh, 'addToGroup');
});
});