diff --git a/reverseString/reverseString.spec.js b/reverseString/reverseString.spec.js index fe135e9..7ddbbb9 100644 --- a/reverseString/reverseString.spec.js +++ b/reverseString/reverseString.spec.js @@ -1,18 +1,18 @@ const reverseString = require('./reverseString') describe('reverseString', function() { - it('reverses single word', function() { - expect(reverseString('hello')).toEqual('olleh'); - }); + it('reverses single word', function() { + expect(reverseString('hello')).toEqual('olleh'); + }); - xit('reverses multiple words', function() { - expect(reverseString('hello there')).toEqual('ereht olleh') - }) + it('reverses multiple words', function() { + expect(reverseString('hello there')).toEqual('ereht olleh') + }) - xit('works with numbers and punctuation', function() { - expect(reverseString('123! abc!')).toEqual('!cba !321') - }) - xit('works with blank strings', function() { - expect(reverseString('')).toEqual('') - }) -}); + xit('works with numbers and punctuation', function() { + expect(reverseString('123! abc!')).toEqual('!cba !321') + }) + xit('works with blank strings', function() { + expect(reverseString('')).toEqual('') + }) +}); \ No newline at end of file