Update palindrome test to match solution test

This commit is contained in:
MarLatte 2023-05-20 03:07:57 -04:00
parent e8fc8ce41e
commit 0d75cc0814
1 changed files with 3 additions and 0 deletions

View File

@ -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);
});
});