Files
odin-javascript-exercises/09_palindromes/palindromes.spec.js
T

23 lines
774 B
JavaScript
Raw Normal View History

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