@@ -150,7 +150,7 @@ void main() {
150150 controller.selection,
151151 const TextSelection .collapsed (offset: 19 ),
152152 );
153- }, variant: TargetPlatformVariant .all ());
153+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
154154
155155 testWidgets ('backspace readonly' , (WidgetTester tester) async {
156156 controller.text = testText;
@@ -215,7 +215,7 @@ void main() {
215215 controller.selection,
216216 const TextSelection .collapsed (offset: 71 ),
217217 );
218- }, variant: TargetPlatformVariant .all ());
218+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
219219
220220 testWidgets ('backspace inside of a cluster' , (WidgetTester tester) async {
221221 controller.text = testCluster;
@@ -236,7 +236,7 @@ void main() {
236236 controller.selection,
237237 const TextSelection .collapsed (offset: 0 ),
238238 );
239- }, variant: TargetPlatformVariant .all ());
239+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
240240
241241 testWidgets ('backspace at cluster boundary' , (WidgetTester tester) async {
242242 controller.text = testCluster;
@@ -257,7 +257,7 @@ void main() {
257257 controller.selection,
258258 const TextSelection .collapsed (offset: 0 ),
259259 );
260- }, variant: TargetPlatformVariant .all ());
260+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
261261 });
262262
263263 group ('delete: ' , () {
@@ -287,7 +287,7 @@ void main() {
287287 controller.selection,
288288 const TextSelection .collapsed (offset: 20 ),
289289 );
290- }, variant: TargetPlatformVariant .all ());
290+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
291291
292292 testWidgets ('delete readonly' , (WidgetTester tester) async {
293293 controller.text = testText;
@@ -305,7 +305,7 @@ void main() {
305305 controller.selection,
306306 const TextSelection .collapsed (offset: 20 , affinity: TextAffinity .upstream),
307307 );
308- }, variant: TargetPlatformVariant .all ());
308+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
309309
310310 testWidgets ('delete at start' , (WidgetTester tester) async {
311311 controller.text = testText;
@@ -328,7 +328,7 @@ void main() {
328328 controller.selection,
329329 const TextSelection .collapsed (offset: 0 ),
330330 );
331- }, variant: TargetPlatformVariant .all ());
331+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
332332
333333 testWidgets ('delete at end' , (WidgetTester tester) async {
334334 controller.text = testText;
@@ -373,7 +373,7 @@ void main() {
373373 controller.selection,
374374 const TextSelection .collapsed (offset: 0 ),
375375 );
376- }, variant: TargetPlatformVariant .all ());
376+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
377377
378378 testWidgets ('delete at cluster boundary' , (WidgetTester tester) async {
379379 controller.text = testCluster;
@@ -394,7 +394,7 @@ void main() {
394394 controller.selection,
395395 const TextSelection .collapsed (offset: 8 ),
396396 );
397- }, variant: TargetPlatformVariant .all ());
397+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
398398 });
399399
400400 group ('Non-collapsed delete' , () {
@@ -420,7 +420,7 @@ void main() {
420420 controller.selection,
421421 const TextSelection .collapsed (offset: 8 ),
422422 );
423- }, variant: TargetPlatformVariant .all ());
423+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
424424
425425 testWidgets ('at the boundaries of a cluster' , (WidgetTester tester) async {
426426 controller.text = testCluster;
@@ -441,7 +441,7 @@ void main() {
441441 controller.selection,
442442 const TextSelection .collapsed (offset: 8 ),
443443 );
444- }, variant: TargetPlatformVariant .all ());
444+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
445445
446446 testWidgets ('cross-cluster' , (WidgetTester tester) async {
447447 controller.text = testCluster;
@@ -462,7 +462,7 @@ void main() {
462462 controller.selection,
463463 const TextSelection .collapsed (offset: 0 ),
464464 );
465- }, variant: TargetPlatformVariant .all ());
465+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
466466
467467 testWidgets ('cross-cluster obscured text' , (WidgetTester tester) async {
468468 controller.text = testCluster;
@@ -483,7 +483,7 @@ void main() {
483483 controller.selection,
484484 const TextSelection .collapsed (offset: 1 ),
485485 );
486- }, variant: TargetPlatformVariant .all ());
486+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
487487 });
488488
489489 group ('word modifier + backspace' , () {
@@ -516,7 +516,7 @@ void main() {
516516 controller.selection,
517517 const TextSelection .collapsed (offset: 24 ),
518518 );
519- }, variant: TargetPlatformVariant .all ());
519+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
520520
521521 testWidgets ('readonly' , (WidgetTester tester) async {
522522 controller.text = testText;
@@ -581,7 +581,7 @@ void main() {
581581 controller.selection,
582582 const TextSelection .collapsed (offset: 71 ),
583583 );
584- }, variant: TargetPlatformVariant .all ());
584+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
585585
586586 testWidgets ('inside of a cluster' , (WidgetTester tester) async {
587587 controller.text = testCluster;
@@ -602,7 +602,7 @@ void main() {
602602 controller.selection,
603603 const TextSelection .collapsed (offset: 0 ),
604604 );
605- }, variant: TargetPlatformVariant .all ());
605+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
606606
607607 testWidgets ('at cluster boundary' , (WidgetTester tester) async {
608608 controller.text = testCluster;
@@ -623,7 +623,7 @@ void main() {
623623 controller.selection,
624624 const TextSelection .collapsed (offset: 0 ),
625625 );
626- }, variant: TargetPlatformVariant .all ());
626+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
627627 });
628628
629629 group ('word modifier + delete' , () {
@@ -656,7 +656,7 @@ void main() {
656656 controller.selection,
657657 const TextSelection .collapsed (offset: 23 ),
658658 );
659- }, variant: TargetPlatformVariant .all ());
659+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
660660
661661 testWidgets ('readonly' , (WidgetTester tester) async {
662662 controller.text = testText;
@@ -697,7 +697,7 @@ void main() {
697697 controller.selection,
698698 const TextSelection .collapsed (offset: 0 ),
699699 );
700- }, variant: TargetPlatformVariant .all ());
700+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
701701
702702 testWidgets ('at end' , (WidgetTester tester) async {
703703 controller.text = testText;
@@ -735,7 +735,7 @@ void main() {
735735 controller.selection,
736736 const TextSelection .collapsed (offset: 0 ),
737737 );
738- }, variant: TargetPlatformVariant .all ());
738+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
739739
740740 testWidgets ('at cluster boundary' , (WidgetTester tester) async {
741741 controller.text = testCluster;
@@ -756,7 +756,7 @@ void main() {
756756 controller.selection,
757757 const TextSelection .collapsed (offset: 8 ),
758758 );
759- }, variant: TargetPlatformVariant .all ());
759+ }, variant: TargetPlatformVariant .all (excluding : < TargetPlatform > { TargetPlatform .iOS } ));
760760 });
761761
762762 group ('line modifier + backspace' , () {
0 commit comments