Skip to content

Instantly share code, notes, and snippets.

@Gideon877
Created July 29, 2019 13:22
Show Gist options
  • Save Gideon877/8d356c37c13d35411f37c6f58165d32b to your computer and use it in GitHub Desktop.
Save Gideon877/8d356c37c13d35411f37c6f58165d32b to your computer and use it in GitHub Desktop.
Please use this as a reference
it ("this will be able to return all names",function(){
let greetInstance = greetFunc();
greetInstance.setName('Jan');
greetInstance.setName('Jane');
greetInstance.setName('James');
greetInstance.setName('John');
assert.equal(4, greetInstance.getCounter());
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment