2018-08-07 10:23:28 +00:00
|
|
|
const reverseString = require('./reverseString')
|
2017-08-17 21:19:17 +00:00
|
|
|
|
2017-12-29 12:52:53 +00:00
|
|
|
describe('reverseString', function() {
|
2017-08-17 21:19:17 +00:00
|
|
|
it('reverses single word', function() {
|
|
|
|
expect(reverseString('hello')).toEqual('olleh');
|
|
|
|
});
|
|
|
|
|
2017-11-24 20:23:16 +00:00
|
|
|
xit('reverses multiple words', function() {
|
2017-08-17 21:19:17 +00:00
|
|
|
expect(reverseString('hello there')).toEqual('ereht olleh')
|
|
|
|
})
|
|
|
|
|
2017-11-24 20:23:16 +00:00
|
|
|
xit('works with numbers and punctuation', function() {
|
2017-08-17 21:19:17 +00:00
|
|
|
expect(reverseString('123! abc!')).toEqual('!cba !321')
|
|
|
|
})
|
2020-05-08 06:56:55 +00:00
|
|
|
xit('works with blank strings', function() {
|
|
|
|
expect(reverseString('')).toEqual('')
|
|
|
|
})
|
2018-08-07 10:23:28 +00:00
|
|
|
});
|