File tree 2 files changed +30
-0
lines changed
test/super_editor/infrastructure
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -1396,6 +1396,13 @@ class CommonEditorOperations {
1396
1396
}) {
1397
1397
// Figure out where the caret should appear after the
1398
1398
// deletion.
1399
+
1400
+ if (selection.isCollapsed) {
1401
+ // There is no expanded deletion when the selection is collapsed. Therefore,
1402
+ // no selection change is expected.
1403
+ return null ;
1404
+ }
1405
+
1399
1406
// TODO: This calculation depends upon the first
1400
1407
// selected node still existing after the deletion. This
1401
1408
// is a fragile expectation and should be revisited.
Original file line number Diff line number Diff line change @@ -186,6 +186,29 @@ void main() {
186
186
);
187
187
});
188
188
});
189
+
190
+ group ('getDocumentPositionAfterExpandedDeletion' , () {
191
+ test ('returns null for collapsed selection' , () {
192
+ final node = HorizontalRuleNode (
193
+ id: "1" ,
194
+ );
195
+
196
+ expect (
197
+ CommonEditorOperations .getDocumentPositionAfterExpandedDeletion (
198
+ document: MutableDocument (nodes: [
199
+ node,
200
+ ]),
201
+ selection: DocumentSelection .collapsed (
202
+ position: DocumentPosition (
203
+ nodeId: node.id,
204
+ nodePosition: node.endPosition,
205
+ ),
206
+ ),
207
+ ),
208
+ isNull,
209
+ );
210
+ });
211
+ });
189
212
});
190
213
}
191
214
You can’t perform that action at this time.
0 commit comments