mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-06-05 15:09:09 +09:00
Update leapYears.spec.js
This commit is contained in:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user