8000 Added blank string test to reverseString · codekacode/javascript-exercises@3758497 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3758497

Browse files
committed
Added blank string test to reverseString
1 parent 68691ab commit 3758497

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

reverseString/reverseString.spec.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,7 @@ describe('reverseString', function() {
1212
xit('works with numbers and punctuation', function() {
1313
expect(reverseString('123! abc!')).toEqual('!cba !321')
1414
})
15+
xit('works with blank strings', function() {
16+
expect(reverseString('')).toEqual('')
17+
})
1518
});

0 commit comments

Comments
 (0)
0