works with numbers and punctuation

This commit is contained in:
Mohammed Nabeel 2020-07-16 10:17:49 +03:00
parent c77d45581a
commit b996addda2
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ describe('reverseString', function() {
expect(reverseString('hello there')).toEqual('ereht olleh') 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') expect(reverseString('123! abc!')).toEqual('!cba !321')
}) })
xit('works with blank strings', function() { xit('works with blank strings', function() {