Skip to content

Commit 0d75cc0

Browse files
committed
Update palindrome test to match solution test
1 parent e8fc8ce commit 0d75cc0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

09_palindromes/palindromes.spec.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,7 @@ describe('palindromes', () => {
2222
test.skip('works with numbers in a string', () => {
2323
expect(palindromes('rac3e3car')).toBe(true);
2424
});
25+
test.skip('works with unevenly spaced numbers in a string', () => {
26+
expect(palindromes('r3ace3car')).toBe(false);
27+
});
2528
});

0 commit comments

Comments
 (0)