@@ -350,15 +350,15 @@ void main() {
350
350
checkComposeBoxHintTexts (tester,
351
351
topicHintText: eg.defaultRealmEmptyTopicDisplayName,
352
352
contentHintText: 'Message #${channel .name } > ${eg .defaultRealmEmptyTopicDisplayName }' );
353
- }, skip : true ); // null topic names soon to be enabled
353
+ });
354
354
355
355
testWidgets ('to ChannelNarrow without topic; mandatory topics' , (tester) async {
356
356
await prepare (tester, narrow: ChannelNarrow (channel.streamId),
357
357
mandatoryTopics: true );
358
358
checkComposeBoxHintTexts (tester,
359
359
topicHintText: 'Topic' ,
360
360
contentHintText: 'Message #${channel .name } > ${eg .defaultRealmEmptyTopicDisplayName }' );
361
- }, skip : true ); // null topic names soon to be enabled
361
+ });
362
362
363
363
testWidgets ('legacy: to ChannelNarrow without topic' , (tester) async {
364
364
await prepare (tester, narrow: ChannelNarrow (channel.streamId),
@@ -390,7 +390,7 @@ void main() {
390
390
narrow: TopicNarrow (channel.streamId, TopicName ('' )));
391
391
checkComposeBoxHintTexts (tester, contentHintText:
392
392
'Message #${channel .name } > ${eg .defaultRealmEmptyTopicDisplayName }' );
393
- }, skip : true ); // null topic names soon to be enabled
393
+ });
394
394
395
395
testWidgets ('to DmNarrow with self' , (tester) async {
396
396
await prepare (tester, narrow: DmNarrow .withUser (
@@ -706,7 +706,7 @@ void main() {
706
706
..method.equals ('POST' )
707
707
..url.path.equals ('/api/v1/messages' )
708
708
..bodyFields['topic' ].equals ('' );
709
- }, skip : true ); // null topic names soon to be enabled
709
+ });
710
710
711
711
testWidgets ('legacy: empty topic -> "(no topic)"' , (tester) async {
712
712
await setupAndTapSend (tester,
@@ -731,7 +731,7 @@ void main() {
731
731
topicInputText: eg.defaultRealmEmptyTopicDisplayName,
732
732
mandatoryTopics: true );
733
733
checkMessageNotSent (tester);
734
- }, skip : true ); // null topic names soon to be enabled
734
+ });
735
735
736
736
testWidgets ('if topics are mandatory, reject "(no topic)"' , (tester) async {
737
737
await setupAndTapSend (tester,
0 commit comments