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/0af8764b948ca6558d62d633871e1cfa to your computer and use it in GitHub Desktop.
Save gdyrrahitis/0af8764b948ca6558d62d633871e1cfa to your computer and use it in GitHub Desktop.
describe("Calculator Spec", function () {
it("should add two and two and get four as a result", function () {
// Arrange
var calculator = new Calculator();
// Act
var result = calculator.add(2, 2);
// Assert
expect(result).toBe(4);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment