8000 solved test #4 · ImJasc/javascript-exercises@f3424f9 · GitHub
[go: up one dir, main page]

Skip to content

Commit f3424f9

Browse files
committed
solved test TheOdinProject#4
1 parent 5b3417f commit f3424f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

06_leapYears/leapYears.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe('leapYears', () => {
1010
test('works with ridiculously futuristic non century years', () => {
1111
expect(leapYears(34992)).toBe(true);
1212
});
13-
test.skip('works with century years', () => {
13+
test('works with century years', () => {
1414
expect(leapYears(1900)).toBe(false);
1515
});
1616
test.skip('works with century years', () => {

0 commit comments

Comments
 (0)
0