Updated file paths

This commit is contained in:
thatblindgeye
2023-02-01 18:53:54 -05:00
parent a092bf0559
commit 2ec0f4344d
24 changed files with 207 additions and 204 deletions
@@ -1,22 +1,22 @@
const leapYears = require("./leapYears");
const leapYears = require('./leapYears-solution');
describe("leapYears", () => {
test("works with non century years", () => {
describe('leapYears', () => {
test('works with non century years', () => {
expect(leapYears(1996)).toBe(true);
});
test.skip("works with non century years", () => {
test.skip('works with non century years', () => {
expect(leapYears(1997)).toBe(false);
});
test.skip("works with ridiculously futuristic non century years", () => {
test.skip('works with ridiculously futuristic non century years', () => {
expect(leapYears(34992)).toBe(true);
});
test.skip("works with century years", () => {
test.skip('works with century years', () => {
expect(leapYears(1900)).toBe(false);
});
test.skip("works with century years", () => {
test.skip('works with century years', () => {
expect(leapYears(1600)).toBe(true);
});
test.skip("works with century years", () => {
test.skip('works with century years', () => {
expect(leapYears(700)).toBe(false);
});
});