mirror of https://github.com/status-im/web3.js.git
15 lines
280 B
JavaScript
15 lines
280 B
JavaScript
|
var testMethod = require('./helpers/test.method.js');
|
||
|
|
||
|
var method = 'getHex';
|
||
|
|
||
|
var tests = [{
|
||
|
args: ['myDB', 'myKey'],
|
||
|
formattedArgs: ['myDB', 'myKey'],
|
||
|
result: '0xf',
|
||
|
formattedResult: '0xf',
|
||
|
call: 'db_'+ method
|
||
|
}];
|
||
|
|
||
|
testMethod.runTests('db', method, tests);
|
||
|
|