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