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.
23 lines
460 B
23 lines
460 B
var chai = require('chai');
|
|
var web3 = require('../index');
|
|
var testMethod = require('./helpers/test.method.js');
|
|
|
|
var method = 'getCompilers';
|
|
|
|
|
|
var tests = [{
|
|
args: [],
|
|
formattedArgs: [],
|
|
result: ['solidity'],
|
|
formattedResult: ['solidity'],
|
|
call: 'eth_'+ method
|
|
},{
|
|
args: [],
|
|
formattedArgs: [],
|
|
result: ['solidity'],
|
|
formattedResult: ['solidity'],
|
|
call: 'eth_'+ method
|
|
}];
|
|
|
|
testMethod.runTests('eth', method, tests);
|
|
|
|
|