Skip to content

Instantly share code, notes, and snippets.

@techiediaries
Created September 25, 2018 19:07
Show Gist options
  • Select an option

  • Save techiediaries/f04223d4e1ecab72cea8edf2440bc7d2 to your computer and use it in GitHub Desktop.

Select an option

Save techiediaries/f04223d4e1ecab72cea8edf2440bc7d2 to your computer and use it in GitHub Desktop.
it("should be able to tell if a number is even",function() {
expect(utils.isEven).toBeDefined();
expect(utils.isEven(2)).toBeTruthy();
expect(utils.isEven(1)).toBeFalsy();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment