@@ -296,7 +296,7 @@ describe('changing cell content', () => {
296296 expect ( engine . getCellValue ( adr ( 'B1' ) ) ) . toBe ( 42 )
297297 } )
298298
299- it ( 'set nothing again' , ( ) => {
299+ it ( 'set nothing again (2) ' , ( ) => {
300300 const sheet = [
301301 [ null ] ,
302302 ]
@@ -486,15 +486,15 @@ describe('changing cell content', () => {
486486 expectArrayWithSameContent ( changes . map ( ( change ) => change . newValue ) , [ 2 , 10 , 12 , 18 , 22 ] )
487487 } )
488488
489- it ( 'update empty cell to parsing error ' , ( ) => {
489+ it ( 'update empty cell to parsing error' , ( ) => {
490490 const engine = HyperFormula . buildFromArray ( [ ] )
491491
492492 engine . setCellContents ( adr ( 'A1' ) , '=SUM(' )
493493
494494 expect ( engine . getCellValue ( adr ( 'A1' ) ) ) . toEqualError ( detailedError ( ErrorType . ERROR , ErrorMessage . ParseError ) )
495495 } )
496496
497- it ( 'update dependency value cell to parsing error ' , ( ) => {
497+ it ( 'update dependency value cell to parsing error' , ( ) => {
498498 const sheet = [
499499 [ '1' , '=SUM(A1)' ] ,
500500 ]
@@ -509,7 +509,7 @@ describe('changing cell content', () => {
509509 expect ( engine . getCellValue ( adr ( 'B1' ) ) ) . toEqualError ( detailedError ( ErrorType . ERROR , ErrorMessage . ParseError ) )
510510 } )
511511
512- it ( 'update formula cell to parsing error ' , ( ) => {
512+ it ( 'update formula cell to parsing error' , ( ) => {
513513 const sheet = [
514514 [ '1' , '=SUM(A1)' ] ,
515515 ]
@@ -907,7 +907,6 @@ describe('arrays', () => {
907907 [ undefined , ArrayVertex , ArrayVertex ] ,
908908 ] )
909909 expect ( engine . arrayMapping . arrayMapping . size ) . toEqual ( 4 )
910- expect ( engine . getSheetValues ( 0 ) )
911910 } )
912911
913912 it ( 'should REF last array' , ( ) => {
@@ -931,7 +930,6 @@ describe('arrays', () => {
931930 [ noSpace ( ) , 2 , 2 , 1 , 2 ] ,
932931 ] )
933932 expect ( engine . arrayMapping . arrayMapping . size ) . toEqual ( 3 )
934- expect ( engine . getSheetValues ( 0 ) )
935933 } )
936934
937935 it ( 'should make existing array REF and change cell content to simple value' , ( ) => {
0 commit comments