Added blank string test to reverseString
This commit is contained in:
parent
68691ab7a6
commit
3758497cb2
|
@ -12,4 +12,7 @@ describe('reverseString', function() {
|
|||
xit('works with numbers and punctuation', function() {
|
||||
expect(reverseString('123! abc!')).toEqual('!cba !321')
|
||||
})
|
||||
xit('works with blank strings', function() {
|
||||
expect(reverseString('')).toEqual('')
|
||||
})
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue