Files
odin-javascript-exercises/leapYears/leapYears.spec.js
T

23 lines
693 B
JavaScript
Raw Normal View History

2018-06-08 20:44:45 -04:00
let leapYears = require('./leapYears')
2017-08-25 13:47:05 -05:00
describe('leapYears', function() {
it('works with non century years', function() {
2017-10-25 11:52:28 -05:00
expect(leapYears(1996)).toEqual(true);
2017-08-25 13:47:05 -05:00
});
2017-11-24 14:23:16 -06:00
xit('works with non century years', function() {
2017-08-25 13:47:05 -05:00
expect(leapYears(1997)).toEqual(false);
});
2017-11-24 14:23:16 -06:00
xit('works with ridiculously futuristic non century years', function() {
2017-08-25 13:47:05 -05:00
expect(leapYears(34992)).toEqual(true);
});
2017-11-24 14:23:16 -06:00
xit('works with century years', function() {
2017-08-25 13:47:05 -05:00
expect(leapYears(1900)).toEqual(false);
});
2017-11-24 14:23:16 -06:00
xit('works with century years', function() {
2017-10-25 11:52:28 -05:00
expect(leapYears(1600)).toEqual(true);
2017-08-25 13:47:05 -05:00
});
2017-11-24 14:23:16 -06:00
xit('works with century years', function() {
2017-08-25 13:47:05 -05:00
expect(leapYears(700)).toEqual(false);
});
});