We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8746ce0 commit 83d3dcdCopy full SHA for 83d3dcd
09_palindromes/palindromes.spec.js
@@ -19,4 +19,7 @@ describe('palindromes', () => {
19
test.skip('doesn\'t just always return true', () => {
20
expect(palindromes('ZZZZ car, a man, a maracaz.')).toBe(false);
21
});
22
+ test('works with numbers in a string', () => {
23
+ expect(palindromes('rac3e3car')).toBe(true);
24
+ });
25
0 commit comments