diff --git a/reverseString/reverseString.spec.js b/reverseString/reverseString.spec.js index 7ddbbb9..f68d3fa 100644 --- a/reverseString/reverseString.spec.js +++ b/reverseString/reverseString.spec.js @@ -9,7 +9,7 @@ describe('reverseString', function() { expect(reverseString('hello there')).toEqual('ereht olleh') }) - xit('works with numbers and punctuation', function() { + it('works with numbers and punctuation', function() { expect(reverseString('123! abc!')).toEqual('!cba !321') }) xit('works with blank strings', function() {