Revert "Merge pull request #1 from xandora/jester-tester"

This reverts commit e901090896, reversing
changes made to 42076e7424.
This commit is contained in:
Tatiana
2021-05-08 11:28:50 -07:00
parent b2f2211321
commit e691edc97c
12 changed files with 63 additions and 62 deletions
+7 -7
View File
@@ -1,22 +1,22 @@
const leapYears = require("./leapYears");
describe("leapYears", function () {
it("works with non century years", function () {
describe('leapYears', function() {
it('works with non century years', function() {
expect(leapYears(1996)).toEqual(true);
});
xit("works with non century years", function () {
xit('works with non century years', function() {
expect(leapYears(1997)).toEqual(false);
});
xit("works with ridiculously futuristic non century years", function () {
xit('works with ridiculously futuristic non century years', function() {
expect(leapYears(34992)).toEqual(true);
});
xit("works with century years", function () {
xit('works with century years', function() {
expect(leapYears(1900)).toEqual(false);
});
xit("works with century years", function () {
xit('works with century years', function() {
expect(leapYears(1600)).toEqual(true);
});
xit("works with century years", function () {
xit('works with century years', function() {
expect(leapYears(700)).toEqual(false);
});
});