Revert "update cloning link"

This reverts commit 4c771f2e05.
This commit is contained in:
Tatiana
2021-05-08 11:25:04 -07:00
parent 60fe6c8b1f
commit 18cffeb940
1791 changed files with 7747 additions and 138307 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
var reverseString = function() {
const reverseString = function() {
}
+5 -2
View File
@@ -5,11 +5,14 @@ describe('reverseString', function() {
expect(reverseString('hello')).toEqual('olleh');
});
it('reverses multiple words', function() {
xit('reverses multiple words', function() {
expect(reverseString('hello there')).toEqual('ereht olleh')
})
it('works with numbers and punctuation', function() {
xit('works with numbers and punctuation', function() {
expect(reverseString('123! abc!')).toEqual('!cba !321')
})
xit('works with blank strings', function() {
expect(reverseString('')).toEqual('')
})
});