@@ -360,15 +360,15 @@ void main() {
360
360
checkComposeBoxHintTexts (tester,
361
361
topicHintText: eg.defaultRealmEmptyTopicDisplayName,
362
362
contentHintText: 'Message #${channel .name } > ${eg .defaultRealmEmptyTopicDisplayName }' );
363
- }, skip : true ); // null topic names soon to be enabled
363
+ });
364
364
365
365
testWidgets ('to ChannelNarrow with empty topic (mandatory topics)' , (tester) async {
366
366
await prepare (tester, narrow: ChannelNarrow (channel.streamId),
367
367
mandatoryTopics: true );
368
368
checkComposeBoxHintTexts (tester,
369
369
topicHintText: 'Topic' ,
370
370
contentHintText: 'Message #${channel .name } > ${eg .defaultRealmEmptyTopicDisplayName }' );
371
- }, skip : true ); // null topic names soon to be enabled
371
+ });
372
372
373
373
testWidgets ('legacy: to ChannelNarrow with empty topic' , (tester) async {
374
374
await prepare (tester, narrow: ChannelNarrow (channel.streamId),
@@ -404,7 +404,7 @@ void main() {
404
404
mandatoryTopics: false );
405
405
checkComposeBoxHintTexts (tester, contentHintText:
406
406
'Message #${channel .name } > ${eg .defaultRealmEmptyTopicDisplayName }' );
407
- }, skip : true ); // null topic names soon to be enabled
407
+ });
408
408
409
409
testWidgets ('to DmNarrow with self' , (tester) async {
410
410
await prepare (tester, narrow: DmNarrow .withUser (
@@ -723,7 +723,7 @@ void main() {
723
723
..method.equals ('POST' )
724
724
..url.path.equals ('/api/v1/messages' )
725
725
..bodyFields['topic' ].equals ('' );
726
- }, skip : true ); // null topic names soon to be enabled
726
+ });
727
727
728
728
testWidgets ('legacy: empty topic -> "(no topic)"' , (tester) async {
729
729
await setupAndTapSend (tester,
@@ -748,7 +748,7 @@ void main() {
748
748
topicInputText: eg.defaultRealmEmptyTopicDisplayName,
749
749
mandatoryTopics: true );
750
750
checkMessageNotSent (tester);
751
- }, skip : true ); // null topic names soon to be enabled
751
+ });
752
752
753
753
testWidgets ('if topics are mandatory, reject "(no topic)"' , (tester) async {
754
754
await setupAndTapSend (tester,
0 commit comments