Guest User

Untitled

a guest
Jan 22nd, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. describe('A leap year', () => {
  2.  
  3. it('is not very common', () => {
  4. expect(isLeapYear(2015)).toBeFalsy()
  5. })
  6.  
  7. xit('is introduced every 4 years to adjust about a day', () => {
  8. expect(isLeapYear(2016)).toBeTruthy()
  9. })
  10. })
Add Comment
Please, Sign In to add comment