Skip to content

Instantly share code, notes, and snippets.

@m-yahya
Created November 16, 2018 08:26
Show Gist options
  • Save m-yahya/b68d41a7409106c9d39c05a4595ea47d to your computer and use it in GitHub Desktop.
Save m-yahya/b68d41a7409106c9d39c05a4595ea47d to your computer and use it in GitHub Desktop.
const SimpleContract = artifacts.require("SimpleContract");
contract('SimpleContract', (accounts) => {
it("should return the name", async ()=> {
const instance = await SimpleContract.deployed();
const value = await instance.getName();
assert.equal(value, 'my name');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment