works with blank strings
This commit is contained in:
parent
b996addda2
commit
aa4447b15d
|
@ -12,7 +12,7 @@ describe('reverseString', function() {
|
|||
it('works with numbers and punctuation', function() {
|
||||
expect(reverseString('123! abc!')).toEqual('!cba !321')
|
||||
})
|
||||
xit('works with blank strings', function() {
|
||||
it('works with blank strings', function() {
|
||||
expect(reverseString('')).toEqual('')
|
||||
})
|
||||
});
|
Loading…
Reference in New Issue