Hi,
I am getting the ReferenceError while executing truffle test, I got it from a book:
The solidity file is:
//Greeter.sol
pragma solidity >=0.4.0 <0.7.0;
contract Greeter{
function greet() external pure returns(string memory){
return "hello World";
}
}
The test file is:
//greeter_test.js
describe("greet()", ()=>{
it ("returns 'Hello World'",async()=>{
const greeter = await GreeterContract.deployed();
const expected = "Hello, World";
const actual = await greeter.greet();
assert.equal(actual, expected, "greeted with 'Hello, World'");
});
});
The migration file is:
//2_deploy_greeter.js
const GreeterContract = artifacts.require("Greeter");
module.exports = function(deployer) {
deployer.deploy(GreeterContract);
}
The output of âtruffle testâ is:
$ truffle test
Using network 'test'.
Compiling your contracts...
===========================
> Compiling ./contracts/Greeter.sol
> Artifacts written to /tmp/test--6598-k6XhgnYyAOGZ
> Compiled successfully using:
- solc: 0.5.16+commit.9c3226ce.Emscripten.clang
greet()
1) returns 'Hello World'
0 passing (3ms)
1 failing
1) greet()
returns 'Hello World':
ReferenceError: GreeterContract is not defined
at Context.it (test/greeter_test.js:3:19)
Somebody please guide me how to remove the ReferenceError.
Zulfi.