8000 Unskip all tests · MonsWriter/javascript-exercises@6fb935a · GitHub
[go: up one dir, main page]

Skip to content

Commit 6fb935a

Browse files
committed
Unskip all tests
1 parent 8de9942 commit 6fb935a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

06_leapYears/leapYears.spec.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
< 8000 div class="diff-text-inner color-fg-muted">@@ -4,19 +4,19 @@ describe('leapYears', () => {
44
test('works with non century years', () => {
55
expect(leapYears(1996)).toBe(true);
66
});
7-
test.skip('works with non century years', () => {
7+
test('works with non century years', () => {
88
expect(leapYears(1997)).toBe(false);
99
});
10-
test.skip('works with ridiculously futuristic non century years', () => {
10+
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
});
16-
test.skip('works with century years', () => {
16+
test('works with century years', () => {
1717
expect(leapYears(1600)).toBe(true);
1818
});
19-
test.skip('works with century years', () => {
19 4496 +
test('works with century years', () => {
2020
expect(leapYears(700)).toBe(false);
2121
});
2222
});

0 commit comments

Comments
 (0)
0