@@ -4,19 +4,19 @@ describe('palindromes', () => {
4
4
test ( 'works with single words' , ( ) => {
5
5
expect ( palindromes ( 'racecar' ) ) . toBe ( true ) ;
6
6
} ) ;
7
- test . skip ( 'works with punctuation ' , ( ) => {
7
+ test ( 'works with punctuation ' , ( ) => {
8
8
expect ( palindromes ( 'racecar!' ) ) . toBe ( true ) ;
9
9
} ) ;
10
- test . skip ( 'works with upper-case letters ' , ( ) => {
10
+ test ( 'works with upper-case letters ' , ( ) => {
11
11
expect ( palindromes ( 'Racecar!' ) ) . toBe ( true ) ;
12
12
} ) ;
13
- test . skip ( 'works with multiple words' , ( ) => {
13
+ test ( 'works with multiple words' , ( ) => {
14
14
expect ( palindromes ( 'A car, a man, a maraca.' ) ) . toBe ( true ) ;
15
15
} ) ;
16
- test . skip ( 'works with multiple words' , ( ) => {
16
+ test ( 'works with multiple words' , ( ) => {
17
17
expect ( palindromes ( 'Animal loots foliated detail of stool lamina.' ) ) . toBe ( true ) ;
18
18
} ) ;
19
- test . skip ( 'doesn\'t just always return true' , ( ) => {
19
+ test ( 'doesn\'t just always return true' , ( ) => {
20
20
expect ( palindromes ( 'ZZZZ car, a man, a maracaz.' ) ) . toBe ( false ) ;
21
21
} ) ;
22
22
} ) ;
0 commit comments