Fix palindromes false positive test

This commit is contained in:
Mclilzee 2022-02-08 20:52:06 +01:00
parent 82db5eac8b
commit 1acdfccb5d
1 changed files with 1 additions and 1 deletions

View File

@ -17,6 +17,6 @@ describe('palindromes', () => {
expect(palindromes('Animal loots foliated detail of stool lamina.')).toBe(true);
});
test.skip('doesn\'t just always return true', () => {
expect(palindromes('ZZZZ car, a man, a maraca.')).toBe(false);
expect(palindromes('ZZZZ car, a man, a maracaz.')).toBe(false);
});
});