mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-06-05 15:09:09 +09:00
Update palindrome test to match solution test
This commit is contained in:
@@ -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);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user