Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. describe("Hello", function() {
  2. it("says hello", function() {
  3. expect(hello()).toEqual("Hello, world!");
  4. });
  5.  
  6. it("says hello to someone", function() {
  7. expect(hello("Fred")).toEqual("Hello, Fred!");
  8. });
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement