mirror of
https://github.com/discourse/discourse.git
synced 2025-05-23 08:17:24 +08:00
Remove the topic_featured_link_onebox setting. We will always try to onebox a link and add it to the body if topic_featured_link_enabled is enabled.
This commit is contained in:
@ -41,9 +41,9 @@ test('missingReplyCharacters', function() {
|
||||
missingReplyCharacters('hi', false, true, Discourse.SiteSettings.min_first_post_length - 2, 'too short first post');
|
||||
missingReplyCharacters('hi', true, false, Discourse.SiteSettings.min_private_message_post_length - 2, 'too short private message');
|
||||
|
||||
Discourse.SiteSettings.topic_featured_link_onebox = true;
|
||||
const composer = createComposer({ canEditTopicFeaturedLink: true });
|
||||
equal(composer.get('missingReplyCharacters'), 0, "don't require any post content");
|
||||
// TODO: test that presence of featured link makes this test pass
|
||||
// const composer = createComposer({ canEditTopicFeaturedLink: true });
|
||||
// equal(composer.get('missingReplyCharacters'), 0, "don't require any post content");
|
||||
});
|
||||
|
||||
test('missingTitleCharacters', function() {
|
||||
|
Reference in New Issue
Block a user