@@ -351,15 +351,15 @@ void main() {
351
351
checkComposeBoxHintTexts (tester,
352
352
topicHintText: eg.defaultRealmEmptyTopicDisplayName,
353
353
contentHintText: 'Message #${channel .name } > ${eg .defaultRealmEmptyTopicDisplayName }' );
354
- }, skip : true ); // null topic names soon to be enabled
354
+ });
355
355
356
356
testWidgets ('to ChannelNarrow with empty topic (mandatory topics)' , (tester) async {
357
357
await prepare (tester, narrow: ChannelNarrow (channel.streamId),
358
358
mandatoryTopics: true );
359
359
checkComposeBoxHintTexts (tester,
360
360
topicHintText: 'Topic' ,
361
361
contentHintText: 'Message #${channel .name } > ${eg .defaultRealmEmptyTopicDisplayName }' );
362
- }, skip : true ); // null topic names soon to be enabled
362
+ });
363
363
364
364
testWidgets ('legacy: to ChannelNarrow with empty topic' , (tester) async {
365
365
await prepare (tester, narrow: ChannelNarrow (channel.streamId),
@@ -395,7 +395,7 @@ void main() {
395
395
mandatoryTopics: false );
396
396
checkComposeBoxHintTexts (tester, contentHintText:
397
397
'Message #${channel .name } > ${eg .defaultRealmEmptyTopicDisplayName }' );
398
- }, skip : true ); // null topic names soon to be enabled
398
+ });
399
399
400
400
testWidgets ('to DmNarrow with self' , (tester) async {
401
401
await prepare (tester, narrow: DmNarrow .withUser (
@@ -714,7 +714,7 @@ void main() {
714
714
..method.equals ('POST' )
715
715
..url.path.equals ('/api/v1/messages' )
716
716
..bodyFields['topic' ].equals ('' );
717
- }, skip : true ); // null topic names soon to be enabled
717
+ });
718
718
719
719
testWidgets ('legacy: empty topic -> "(no topic)"' , (tester) async {
720
720
await setupAndTapSend (tester,
@@ -739,7 +739,7 @@ void main() {
739
739
topicInputText: eg.defaultRealmEmptyTopicDisplayName,
740
740
mandatoryTopics: true );
741
741
checkMessageNotSent (tester);
742
- }, skip : true ); // null topic names soon to be enabled
742
+ });
743
743
744
744
testWidgets ('if topics are mandatory, reject "(no topic)"' , (tester) async {
745
745
await setupAndTapSend (tester,
0 commit comments