Update palindrome test to match solution test
This commit is contained in:
parent
e8fc8ce41e
commit
0d75cc0814
|
@ -22,4 +22,7 @@ describe('palindromes', () => {
|
||||||
test.skip('works with numbers in a string', () => {
|
test.skip('works with numbers in a string', () => {
|
||||||
expect(palindromes('rac3e3car')).toBe(true);
|
expect(palindromes('rac3e3car')).toBe(true);
|
||||||
});
|
});
|
||||||
|
test.skip('works with unevenly spaced numbers in a string', () => {
|
||||||
|
expect(palindromes('r3ace3car')).toBe(false);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue