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

Skip to content

Commit fa4e79a

Browse files
committed
Unskip all tests
1 parent 9f2a504 commit fa4e79a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

09_palindromes/palindromes.spec.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ describe('palindromes', () => {
44
test('works with single words', () => {
55
expect(palindromes('racecar')).toBe(true);
66
});
7-
test.skip('works with punctuation ', () => {
7+
test('works with punctuation ', () => {
88
expect(palindromes('racecar!')).toBe(true);
99
});
10-
test.skip('works with upper-case letters ', () => {
10+
test('works with upper-case letters ', () => {
1111
expect(palindromes('Racecar!')).toBe(true);
1212
});
13-
test.skip('works with multiple words', () => {
13+
test('works with multiple words', () => {
1414
expect(palindromes('A car, a man, a maraca.')).toBe(true);
1515
});
16-
test.skip('works with multiple words', () => {
16+
test('works with multiple words', () => {
1717
expect(palindromes('Animal loots foliated detail of stool lamina.')).toBe(true);
1818
});
19-
test.skip('doesn\'t just always return true', () => {
19+
test('doesn\'t just always return true', () => {
2020
expect(palindromes('ZZZZ car, a man, a maracaz.')).toBe(false);
2121
});
2222
});

0 commit comments

Comments
 (0)
0