mirror of
https://github.com/status-im/web3.js.git
synced 2025-02-24 20:18:18 +00:00
14 lines
255 B
JavaScript
14 lines
255 B
JavaScript
var testMethod = require('./helpers/test.method.js');
|
|
|
|
var method = 'getProtocolVersion';
|
|
var call = 'eth_protocolVersion';
|
|
|
|
var tests = [{
|
|
result: '12345',
|
|
formattedResult: '12345',
|
|
call: call
|
|
}];
|
|
|
|
|
|
testMethod.runTests('eth', method, tests);
|