Revert "Resolve merge conflicts"

This reverts commit 61338e0ca0, reversing
changes made to b9983073cc.
This commit is contained in:
Tatiana
2021-05-08 11:27:13 -07:00
parent 18cffeb940
commit b2f2211321
18 changed files with 91 additions and 11174 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
const leapYears = require("./leapYears");
describe("leapYears", () => {
test("works with non century years", () => {
expect(leapYears(1996)).toBe(true);
describe("leapYears", function () {
it("works with non century years", function () {
expect(leapYears(1996)).toEqual(true);
});
xit("works with non century years", function () {
expect(leapYears(1997)).toEqual(false);