odin-javascript-exercises/03_reverseString/reverseString.spec.js
2021-08-07 14:52:11 +08: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('')
})
});