@@ -407,7 +407,7 @@ void main() {
407
407
topicHintText: eg.defaultRealmEmptyTopicDisplayName,
408
408
contentHintText: 'Message #${channel .name } > '
409
409
'${eg .defaultRealmEmptyTopicDisplayName }' );
410
- }, skip : true ); // null topic names soon to be enabled
410
+ });
411
411
412
412
testWidgets ('with empty topic, topic input has focus, then loses it' , (tester) async {
413
413
await prepare (tester, narrow: narrow, mandatoryTopics: false );
@@ -435,7 +435,7 @@ void main() {
435
435
'${eg .defaultRealmEmptyTopicDisplayName }' );
436
436
check (tester.widget <TextField >(topicInputFinder)).decoration.isNotNull ()
437
437
.hintStyle.isNotNull ().fontStyle.equals (FontStyle .italic);
438
- }, skip : true ); // null topic names soon to be enabled
438
+ });
439
439
440
440
testWidgets ('legacy: with empty topic, content input has focus' , (tester) async {
441
441
await prepare (tester, narrow: narrow, mandatoryTopics: false ,
@@ -464,7 +464,7 @@ void main() {
464
464
topicHintText: 'Enter a topic '
465
465
'(skip for “${eg .defaultRealmEmptyTopicDisplayName }”)' ,
466
466
contentHintText: 'Message #${channel .name }' );
467
- }, skip : true ); // null topic names soon to be enabled
467
+ });
468
468
469
469
testWidgets ('with empty topic, content input has focus, then loses it' , (tester) async {
470
470
await prepare (tester, narrow: narrow, mandatoryTopics: false );
@@ -481,7 +481,7 @@ void main() {
481
481
topicHintText: eg.defaultRealmEmptyTopicDisplayName,
482
482
contentHintText: 'Message #${channel .name } > '
483
483
'${eg .defaultRealmEmptyTopicDisplayName }' );
484
- }, skip : true ); // null topic names soon to be enabled
484
+ });
485
485
486
486
testWidgets ('with non-empty topic' , (tester) async {
487
487
await prepare (tester, narrow: narrow, mandatoryTopics: false );
@@ -557,7 +557,7 @@ void main() {
557
557
narrow: TopicNarrow (channel.streamId, TopicName ('' )));
558
558
checkComposeBoxHintTexts (tester, contentHintText:
559
559
'Message #${channel .name } > ${eg .defaultRealmEmptyTopicDisplayName }' );
560
- }, skip : true ); // null topic names soon to be enabled
560
+ });
561
561
});
562
562
563
563
testWidgets ('to DmNarrow with self' , (tester) async {
0 commit comments