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
+4 -4
View File
@@ -4,16 +4,16 @@ describe('repeatString', function() {
it('repeats the string', function() {
expect(repeatString('hey', 3)).toEqual('heyheyhey');
});
it('repeats the string many times', function() {
xit('repeats the string many times', function() {
expect(repeatString('hey', 10)).toEqual('heyheyheyheyheyheyheyheyheyhey');
});
it('repeats the string 1 times', function() {
xit('repeats the string 1 times', function() {
expect(repeatString('hey', 1)).toEqual('hey');
});
it('repeats the string 0 times', function() {
xit('repeats the string 0 times', function() {
expect(repeatString('hey', 0)).toEqual('');
});
it('returns ERROR with negative numbers', function() {
xit('returns ERROR with negative numbers', function() {
expect(repeatString('hey', -1)).toEqual('ERROR');
});
xit('repeats the string a random amount of times', function () {