Advertisement
Dennisaa

CalcSpec.js

Sep 3rd, 2015
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* jshint -W117 */
  2. describe("Calculator", function () {
  3.     'use strict';
  4.     it('should return the sum of 2 numbers when I call add', function () {
  5.         var calc = new Calculator();
  6.         expect(calc.add(1, 1)).toBe(2);
  7.     });  
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement