Merge pull request #227 from Mclilzee/main

This commit is contained in:
Michael Frank 2022-02-13 09:22:26 +13:00 committed by GitHub
commit 2f9f431194
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);
});
});