Skip to content

Instantly share code, notes, and snippets.

@m-yahya
Created November 16, 2018 08:23
Show Gist options
  • Save m-yahya/f2a2b1481faeea6290f17fb049763d3d to your computer and use it in GitHub Desktop.
Save m-yahya/f2a2b1481faeea6290f17fb049763d3d to your computer and use it in GitHub Desktop.
const SimpleContract = artifacts.require("SimpleContract");
contract('SimpleContract', (accounts) => {
it("should return the list of accounts", async ()=> {
console.log(accounts);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment