2018-08-07 10:23:28 +00:00
|
|
|
const palindromes = require('./palindromes')
|
2017-08-25 19:07:28 +00:00
|
|
|
|
2021-03-03 02:13:24 +00:00
|
|
|
describe('palindromes', () => {
|
|
|
|
test('works with single words', () => {
|
|
|
|
expect(palindromes('racecar')).toBe(true);
|
2017-08-25 19:07:28 +00:00
|
|
|
});
|
2021-03-03 02:13:24 +00:00
|
|
|
test.skip('works with punctuation ', () => {
|
|
|
|
expect(palindromes('racecar!')).toBe(true);
|
2020-06-25 09:17:48 +00:00
|
|
|
});
|
2021-03-03 02:13:24 +00:00
|
|
|
test.skip('works with upper-case letters ', () => {
|
|
|
|
expect(palindromes('Racecar!')).toBe(true);
|
2017-08-25 19:07:28 +00:00
|
|
|
});
|
2021-03-03 02:13:24 +00:00
|
|
|
test.skip('works with multiple words', () => {
|
|
|
|
expect(palindromes('A car, a man, a maraca.')).toBe(true);
|
2017-08-25 19:07:28 +00:00
|
|
|
});
|
2021-03-03 02:13:24 +00:00
|
|
|
test.skip('works with multiple words', () => {
|
|
|
|
expect(palindromes('Animal loots foliated detail of stool lamina.')).toBe(true);
|
2017-08-25 19:07:28 +00:00
|
|
|
});
|
2021-03-03 02:13:24 +00:00
|
|
|
test.skip('doesn\'t just always return true', () => {
|
2022-02-08 19:52:06 +00:00
|
|
|
expect(palindromes('ZZZZ car, a man, a maracaz.')).toBe(false);
|
2017-08-25 19:07:28 +00:00
|
|
|
});
|
2023-04-08 19:44:15 +00:00
|
|
|
test.skip('works with numbers in a string', () => {
|
2023-01-28 14:26:19 +00:00
|
|
|
expect(palindromes('rac3e3car')).toBe(true);
|
|
|
|
});
|
2017-08-25 19:07:28 +00:00
|
|
|
});
|