mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-06-05 15:09:09 +09:00
19 lines
570 B
JavaScript
19 lines
570 B
JavaScript
const reverseString = require('./reverseString-solution');
|
|
|
|
describe('reverseString', () => {
|
|
test('reverses single word', () => {
|
|
expect(reverseString('hello')).toEqual('olleh');
|
|
});
|
|
|
|
test.skip('reverses multiple words', () => {
|
|
expect(reverseString('hello there')).toEqual('ereht olleh');
|
|
});
|
|
|
|
test.skip('works with numbers and punctuation', () => {
|
|
expect(reverseString('123! abc!')).toEqual('!cba !321');
|
|
});
|
|
test.skip('works with blank strings', () => {
|
|
expect(reverseString('')).toEqual('');
|
|
});
|
|
});
|