odin-javascript-exercises/03_reverseString/reverseString.spec.js
2023-06-19 15:33:46 -07:00

18 lines
507 B
JavaScript

const reverseString = require('./reverseString')
describe('reverseString', () => {
test('reverses single word', () => {
expect(reverseString('hello')).toEqual('olleh');
});
test('reverses multiple words', () => {
expect(reverseString('hello there')).toEqual('ereht olleh')
})
test('works with numbers and punctuation', () => {
expect(reverseString('123! abc!')).toEqual('!cba !321')
})
test('works with blank strings', () => {
expect(reverseString('')).toEqual('')
})
});