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.
17 lines
421 B
17 lines
421 B
10 years ago
|
var chai = require('chai');
|
||
|
var web3 = require('../index');
|
||
|
var testMethod = require('./helpers/test.method.js');
|
||
|
|
||
|
var method = 'hasIdentity';
|
||
|
|
||
|
var tests = [{
|
||
|
args: ['0x2dbab4c0612bf9caf4c195085547dc0612bf9caf4c1950855'],
|
||
|
formattedArgs: ['0x2dbab4c0612bf9caf4c195085547dc0612bf9caf4c1950855'],
|
||
|
result: true,
|
||
|
formattedResult: true,
|
||
|
call: 'shh_'+ method
|
||
|
}];
|
||
|
|
||
|
testMethod.runTests('shh', method, tests);
|
||
|
|