@@ -10,24 +10,24 @@ describe('insertAt', () => {
1010 expect ( result ) . to . eql ( [ 9 , 1 , 2 , 3 , 4 , 5 ] ) ;
1111 } ) ;
1212
13- // it('inserts element into the middle', () => {
14- // const array = [1, 2, 3, 4, 5];
13+ it ( 'inserts element into the middle' , ( ) => {
14+ const array = [ 1 , 2 , 3 , 4 , 5 ] ;
1515
16- // const result = insertAt(array, { index: 3, element: 9 });
17- // expect(result).to.eql([1, 2, 3, 9, 4, 5]);
18- // });
16+ const result = insertAt ( array , { index : 3 , element : 9 } ) ;
17+ expect ( result ) . to . eql ( [ 1 , 2 , 3 , 9 , 4 , 5 ] ) ;
18+ } ) ;
1919
20- // it('inserts element into the last', () => {
21- // const array = [1, 2, 3, 4, 5];
20+ it ( 'inserts element into the last' , ( ) => {
21+ const array = [ 1 , 2 , 3 , 4 , 5 ] ;
2222
23- // const result = insertAt(array, { index: array.length - 1, element: 9 });
24- // expect(result).to.eql([1, 2, 3, 4, 5, 9]);
25- // });
23+ const result = insertAt ( array , { index : array . length - 1 , element : 9 } ) ;
24+ expect ( result ) . to . eql ( [ 1 , 2 , 3 , 4 , 5 , 9 ] ) ;
25+ } ) ;
2626
27- // it('handles index out of range', () => {
28- // const array = [1, 2, 3, 4, 5];
27+ it ( 'handles index out of range' , ( ) => {
28+ const array = [ 1 , 2 , 3 , 4 , 5 ] ;
2929
30- // const result = insertAt(array, { index: 99, element: 9 });
31- // expect(result).to.eql([1, 2, 3, 4, 5, 9]);
32- // });
30+ const result = insertAt ( array , { index : 99 , element : 9 } ) ;
31+ expect ( result ) . to . eql ( [ 1 , 2 , 3 , 4 , 5 , 9 ] ) ;
32+ } ) ;
3333} ) ;
0 commit comments