passed repeats the string 1 times
This commit is contained in:
parent
8a9784a681
commit
042bdf5d49
|
@ -7,7 +7,7 @@ describe('repeatString', function() {
|
||||||
it('repeats the string many times', function() {
|
it('repeats the string many times', function() {
|
||||||
expect(repeatString('hey', 10)).toEqual('heyheyheyheyheyheyheyheyheyhey');
|
expect(repeatString('hey', 10)).toEqual('heyheyheyheyheyheyheyheyheyhey');
|
||||||
});
|
});
|
||||||
xit('repeats the string 1 times', function() {
|
it('repeats the string 1 times', function() {
|
||||||
expect(repeatString('hey', 1)).toEqual('hey');
|
expect(repeatString('hey', 1)).toEqual('hey');
|
||||||
});
|
});
|
||||||
xit('repeats the string 0 times', function() {
|
xit('repeats the string 0 times', function() {
|
||||||
|
|
Loading…
Reference in New Issue