@@ -43,11 +40,11 @@ describe('testRunner', function () {
})
})
it('should 1 passing test',function(){
it('should have 3 items',function(){
assert.equal(Object.keys(results).length,3)
})
it('should returns 2 contracts with specified content',function(){
it('should returns contract content of given local path',function(){
constexpt={
content:'pragma solidity ^0.5.0;\nimport "./mortal.sol";\n\ncontract Greeter is Mortal {\n /* Define variable greeting of the type string */\n string greeting;\n\n /* This runs when the contract is executed */\n constructor(string memory _greeting) public {\n greeting = _greeting;\n }\n\n /* Main function */\n function greet() public view returns (string memory) {\n return greeting;\n }\n}\n',