Guest User

Untitled

a guest
Jul 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. test("booking gets proper starting coordinates at the begining", function() {
  2. expect(2);
  3. var event = jQuery.Event("mousedown.calendar");
  4. event.pageX = 100;
  5. event.pageY = 200;
  6. jQuery(".weekday > .event_box").first().trigger(event);
  7. equals(booking.startX, 100, "startX");
  8. equals(booking.startY, 200, "startY");
  9. });
Add Comment
Please, Sign In to add comment