Guest User

Untitled

a guest
Nov 16th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. it("should return change the name", async ()=> {
  2. const instance = await SimpleContract.deployed();
  3. await instance.changeName('your name');
  4. const value = await instance.getName();
  5.  
  6. assert.equal(value, 'your name');
  7. });
Add Comment
Please, Sign In to add comment