odin-default-js-exercises/09_palindromes/palindromes.spec.js

23 lines
774 B
JavaScript
Raw Normal View History

const palindromes = require('./palindromes')
2017-08-25 19:07:28 +00:00
describe('palindromes', () => {
test('works with single words', () => {
expect(palindromes('racecar')).toBe(true);
2017-08-25 19:07:28 +00:00
});
test.skip('works with punctuation ', () => {
expect(palindromes('racecar!')).toBe(true);
});
test.skip('works with upper-case letters ', () => {
expect(palindromes('Racecar!')).toBe(true);
2017-08-25 19:07:28 +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
});
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
});
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
});
});