Guest User

Untitled

a guest
Oct 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. describe('pretty date', function(){
  2. var input = { time: 1341279000000, utc_offset: -25200000 },
  3. expected = 'Monday, July 2nd 2012 6:30:00 PM',
  4. actual = helpers.prettyDate(input.time, input.utc_offset);
  5.  
  6. it('prints a pretty date in the correct time zone', function(){
  7. expected.should.equal(actual);
  8. });
  9. });
Add Comment
Please, Sign In to add comment