example-functions_spec.js 231 B

123456789101112
  1. describe("Example functions", function(){
  2. it("Should multiply two numbers", function(){
  3. var result = EXAMPLES.multiply(5,8);
  4. expect(result).toEqual(40);
  5. });
  6. it("Should fail!!", function(){
  7. expect(3).toEqual(8);
  8. });
  9. });