works with blank strings

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

View File

@ -12,7 +12,7 @@ describe('reverseString', function() {
it('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() { it('works with blank strings', function() {
expect(reverseString('')).toEqual('') expect(reverseString('')).toEqual('')
}) })
}); });