diff --git a/09_palindromes/palindromes.spec.js b/09_palindromes/palindromes.spec.js index ba34a4d..90d53e4 100644 --- a/09_palindromes/palindromes.spec.js +++ b/09_palindromes/palindromes.spec.js @@ -22,4 +22,7 @@ describe('palindromes', () => { test.skip('works with numbers in a string', () => { expect(palindromes('rac3e3car')).toBe(true); }); + test.skip('works with unevenly spaced numbers in a string', () => { + expect(palindromes('r3ace3car')).toBe(false); + }); });