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

19 lines
560 B
JavaScript
Raw Normal View History

const expect = require('expect');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');
});
xit('reverses multiple words', function() {
2017-08-17 21:19:17 +00:00
expect(reverseString('hello there')).toEqual('ereht olleh')
})
xit('works with numbers and punctuation', function() {
2017-08-17 21:19:17 +00:00
expect(reverseString('123! abc!')).toEqual('!cba !321')
})
xit('works with blank strings', function() {
expect(reverseString('')).toEqual('')
})
});