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

24 lines
774 B
JavaScript
Raw Normal View History

2021-03-09 11:12:25 +00:00
const palindromes = require('./palindromes')
2017-08-25 19:07:28 +00:00
2021-03-09 11:12:25 +00:00
describe('palindromes', () => {
test('works with single words', () => {
expect(palindromes('racecar')).toBe(true);
2017-08-25 19:07:28 +00:00
});
2021-03-09 11:12:25 +00:00
test.skip('works with punctuation ', () => {
expect(palindromes('racecar!')).toBe(true);
});
2021-03-09 11:12:25 +00:00
test.skip('works with upper-case letters ', () => {
expect(palindromes('Racecar!')).toBe(true);
2017-08-25 19:07:28 +00:00
});
2021-03-09 11:12:25 +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-09 11:12:25 +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-09 11:12:25 +00:00
test.skip('doesn\'t just always return true', () => {
expect(palindromes('ZZZZ car, a man, a maraca.')).toBe(false);
2017-08-25 19:07:28 +00:00
});
});