Skip to content

Instantly share code, notes, and snippets.

@taingmeng
Last active November 17, 2019 07:12
Show Gist options
  • Save taingmeng/cb8ad35767ab5373f5262e5b9d3c476c to your computer and use it in GitHub Desktop.
Save taingmeng/cb8ad35767ab5373f5262e5b9d3c476c to your computer and use it in GitHub Desktop.
Bad example of not enough test
// whoLikeThis.js
const whoLikeThis = (names) => {
return `${names[0]} and ${names.length - 1} others liked this`;
};
// whoLikeThis.test.js
it('should return the first person name and count of the rest`, () => {
const output = whoLikeThis(['Sarah', 'Michael', 'Jane']);
expect(output).toEqual('Sarach and 2 others liked this');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment