Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Created July 13, 2018 20:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gdyrrahitis/4c9413cde0ff0f57399ff18a04bb5b15 to your computer and use it in GitHub Desktop.
Save gdyrrahitis/4c9413cde0ff0f57399ff18a04bb5b15 to your computer and use it in GitHub Desktop.
it("should subtract two and two and get zero as a result", function () {
// Arrange
var calculator = new Calculator();
// Act
var result = calculator.subtract(2, 2);
// Assert
expect(result).toBe(0);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment