diff --git a/src/Tests/ParagraphsAdministrationTest.php b/src/Tests/ParagraphsAdministrationTest.php
index f453f20..94c428b 100644
--- a/src/Tests/ParagraphsAdministrationTest.php
+++ b/src/Tests/ParagraphsAdministrationTest.php
@@ -417,6 +417,22 @@ class ParagraphsAdministrationTest extends WebTestBase {
     $this->drupalPostAjaxForm(NULL, $edit, 'field_paragraphs_0_subform_field_paragraphs_add_more');
     // Test the new field is displayed.
     $this->assertFieldByName('files[field_paragraphs_0_subform_field_paragraphs_0_subform_field_image_only_0]');
+
+    $this->drupalGet('admin/structure/types/manage/article/form-display');
+    $select = $this->xpath('//*[@id="edit-fields-field-paragraphs-type"]')[0];
+    $this->assertEqual(count($select->option), 2);
+    // @todo Remove assert raw and uncomment assertOptionSelected after https://www.drupal.org/node/2530092
+    $this->assertRaw('value="entity_reference_paragraphs" selected="selected"');
+    //$this->assertOptionSelected('fields[field_paragraphs][type]', 'entity_reference_paragraphs');
+
+    $this->drupalGet('admin/structure/types/manage/article/fields/add-field');
+    $edit = [
+      'new_storage_type' => 'entity_reference',
+      'label' => 'unsupported field',
+      'field_name' => 'unsupportedfield',
+    ];
+    $this->drupalPostForm(NULL, $edit, t('Save and continue'));
+    $this->assertNoOption('edit-settings-target-type', 'paragraph');
   }
 
   /**
