diff --git a/core/modules/content_translation/src/Tests/ContentTranslationSettingsTest.php b/core/modules/content_translation/src/Tests/ContentTranslationSettingsTest.php
index 0db6520..b2b7aa4 100644
--- a/core/modules/content_translation/src/Tests/ContentTranslationSettingsTest.php
+++ b/core/modules/content_translation/src/Tests/ContentTranslationSettingsTest.php
@@ -232,6 +232,20 @@ function testFieldTranslatableSettingsUI() {
   }
 
   /**
+   * Tests that translatable fields are being rendered.
+   */
+  function testFieldTranslatableArticle() {
+    $path = 'admin/config/regional/content-language';
+    $this->drupalGet($path);
+    // Check comment checkbox
+    $this->assertFieldByXPath("//input[@id='edit-settings-node-article-fields-comment' and @checked='checked']", NULL);
+    // Check image checkbox
+    $this->assertFieldByXPath("//input[@id='edit-settings-node-article-fields-field-image' and @checked='checked']", NULL);
+    // Check tag checkbox
+    $this->assertFieldByXPath("//input[@id='edit-settings-node-article-fields-field-tags' and @checked='checked']", NULL);
+  }
+
+  /**
    * Returns the entity manager.
    *
    * @return \Drupal\Core\Entity\EntityManagerInterface
