mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-14 04:06:07 +09:00
Revert "Resolve merge conflicts"
This reverts commit61338e0ca0, reversing changes made tob9983073cc.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user