File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff
B19D
line change @@ -4,16 +4,16 @@ describe('repeatString', function() {
4
4
it ( 'repeats the string' , function ( ) {
5
5
expect ( repeatString ( 'hey' , 3 ) ) . toEqual ( 'heyheyhey' ) ;
6
6
} ) ;
7
- xit ( 'repeats the string many times' , function ( ) {
7
+ it ( 'repeats the string many times' , function ( ) {
8
8
expect ( repeatString ( 'hey' , 10 ) ) . toEqual ( 'heyheyheyheyheyheyheyheyheyhey' ) ;
9
9
} ) ;
10
- xit ( 'repeats the string 1 times' , function ( ) {
10
+ it ( 'repeats the string 1 times' , function ( ) {
11
11
expect ( repeatString ( 'hey' , 1 ) ) . toEqual ( 'hey' ) ;
12
12
} ) ;
13
- xit ( 'repeats the string 0 times' , function ( ) {
13
+ it ( 'repeats the string 0 times' , function ( ) {
14
14
expect ( repeatString ( 'hey' , 0 ) ) . toEqual ( '' ) ;
15
15
} ) ;
16
- xit ( 'returns ERROR with negative numbers' , function ( ) {
16
+ it ( 'returns ERROR with negative numbers' , function ( ) {
17
17
expect ( repeatString ( 'hey' , - 1 ) ) . toEqual ( 'ERROR' ) ;
18
18
} ) ;
19
19
} ) ;
You can’t perform that action at this time.
0 commit comments