Update leapYears.spec.js

This commit is contained in:
Cody Loyd 2017-10-25 11:52:28 -05:00 committed by GitHub
parent 2b524fb14d
commit afaa699ad1

View file

@ -2,7 +2,7 @@ var leapYears = require('./leapYears')
describe('leapYears', function() { describe('leapYears', function() {
it('works with non century years', function() { it('works with non century years', function() {
expect(leapYears(1994)).toEqual(true); expect(leapYears(1996)).toEqual(true);
}); });
xit('works with non century years', function() { xit('works with non century years', function() {
expect(leapYears(1997)).toEqual(false); expect(leapYears(1997)).toEqual(false);
@ -14,7 +14,7 @@ describe('leapYears', function() {
expect(leapYears(1900)).toEqual(false); expect(leapYears(1900)).toEqual(false);
}); });
xit('works with century years', function() { xit('works with century years', function() {
expect(leapYears(1400)).toEqual(true); expect(leapYears(1600)).toEqual(true);
}); });
xit('works with century years', function() { xit('works with century years', function() {
expect(leapYears(700)).toEqual(false); expect(leapYears(700)).toEqual(false);