@@ -120,6 +120,7 @@ describe("Scripting", function () {
120
120
expect ( send_queue . has ( refId ) ) . toEqual ( true ) ;
121
121
expect ( send_queue . get ( refId ) ) . toEqual ( {
122
122
id : refId ,
123
+ siblings : null ,
123
124
value : expected ,
124
125
formattedValue : null ,
125
126
} ) ;
@@ -369,6 +370,7 @@ describe("Scripting", function () {
369
370
expect ( send_queue . has ( refId ) ) . toEqual ( true ) ;
370
371
expect ( send_queue . get ( refId ) ) . toEqual ( {
371
372
id : refId ,
373
+ siblings : null ,
372
374
value : "hell" ,
373
375
selRange : [ 4 , 4 ] ,
374
376
} ) ;
@@ -406,6 +408,7 @@ describe("Scripting", function () {
406
408
expect ( send_queue . has ( refId ) ) . toEqual ( true ) ;
407
409
expect ( send_queue . get ( refId ) ) . toEqual ( {
408
410
id : refId ,
411
+ siblings : null ,
409
412
value : "hella" ,
410
413
selRange : [ 5 , 5 ] ,
411
414
} ) ;
@@ -479,6 +482,7 @@ describe("Scripting", function () {
479
482
expect ( send_queue . has ( refId1 ) ) . toEqual ( true ) ;
480
483
expect ( send_queue . get ( refId1 ) ) . toEqual ( {
481
484
id : refId1 ,
485
+ siblings : null ,
482
486
value : "world" ,
483
487
formattedValue : null ,
484
488
} ) ;
@@ -800,6 +804,7 @@ describe("Scripting", function () {
800
804
expect ( send_queue . has ( refId ) ) . toEqual ( true ) ;
801
805
expect ( send_queue . get ( refId ) ) . toEqual ( {
802
806
id : refId ,
807
+ siblings : null ,
803
808
value : "123456.789" ,
804
809
formattedValue : null ,
805
810
} ) ;
@@ -979,6 +984,7 @@ describe("Scripting", function () {
979
984
expect ( send_queue . has ( refId ) ) . toEqual ( true ) ;
980
985
expect ( send_queue . get ( refId ) ) . toEqual ( {
981
986
id : refId ,
987
+ siblings : null ,
982
988
value : "321" ,
983
989
formattedValue : null ,
984
990
} ) ;
@@ -1077,6 +1083,7 @@ describe("Scripting", function () {
1077
1083
expect ( send_queue . has ( refIds [ 3 ] ) ) . toEqual ( true ) ;
1078
1084
expect ( send_queue . get ( refIds [ 3 ] ) ) . toEqual ( {
1079
1085
id : refIds [ 3 ] ,
1086
+ siblings : null ,
1080
1087
value : 1 ,
1081
1088
formattedValue : null ,
1082
1089
} ) ;
@@ -1090,6 +1097,7 @@ describe("Scripting", function () {
1090
1097
expect ( send_queue . has ( refIds [ 3 ] ) ) . toEqual ( true ) ;
1091
1098
expect ( send_queue . get ( refIds [ 3 ] ) ) . toEqual ( {
1092
1099
id : refIds [ 3 ] ,
1100
+ siblings : null ,
1093
1101
value : 3 ,
1094
1102
formattedValue : null ,
1095
1103
} ) ;
@@ -1103,6 +1111,7 @@ describe("Scripting", function () {
1103
1111
expect ( send_queue . has ( refIds [ 3 ] ) ) . toEqual ( true ) ;
1104
1112
expect ( send_queue . get ( refIds [ 3 ] ) ) . toEqual ( {
1105
1113
id : refIds [ 3 ] ,
1114
+ siblings : null ,
1106
1115
value : 6 ,
1107
1116
formattedValue : null ,
1108
1117
} ) ;
@@ -1178,6 +1187,7 @@ describe("Scripting", function () {
1178
1187
expect ( send_queue . has ( refId ) ) . toEqual ( true ) ;
1179
1188
expect ( send_queue . get ( refId ) ) . toEqual ( {
1180
1189
id : refId ,
1190
+ siblings : null ,
1181
1191
value : "3F?" ,
1182
1192
selRange : [ 3 , 3 ] ,
1183
1193
} ) ;
@@ -1206,6 +1216,7 @@ describe("Scripting", function () {
1206
1216
expect ( send_queue . has ( refId ) ) . toEqual ( true ) ;
1207
1217
expect ( send_queue . get ( refId ) ) . toEqual ( {
1208
1218
id : refId ,
1219
+ siblings : null ,
1209
1220
value : "3F?0" ,
1210
1221
formattedValue : null ,
1211
1222
} ) ;
@@ -1266,6 +1277,7 @@ describe("Scripting", function () {
1266
1277
expect ( send_queue . has ( refId ) ) . toEqual ( true ) ;
1267
1278
expect ( send_queue . get ( refId ) ) . toEqual ( {
1268
1279
id : refId ,
1280
+ siblings : null ,
1269
1281
value,
1270
1282
selRange : [ i , i ] ,
1271
1283
} ) ;
@@ -1326,6 +1338,7 @@ describe("Scripting", function () {
1326
1338
expect ( send_queue . has ( refId ) ) . toEqual ( true ) ;
1327
1339
expect ( send_queue . get ( refId ) ) . toEqual ( {
1328
1340
id : refId ,
1341
+ siblings : null ,
1329
1342
value,
1330
1343
selRange : [ i , i ] ,
1331
1344
} ) ;
@@ -1386,6 +1399,7 @@ describe("Scripting", function () {
1386
1399
expect ( send_queue . has ( refId ) ) . toEqual ( true ) ;
1387
1400
expect ( send_queue . get ( refId ) ) . toEqual ( {
1388
1401
id : refId ,
1402
+ siblings : null ,
1389
1403
value,
1390
1404
selRange : [ i , i ] ,
1391
1405
} ) ;
0 commit comments