diff --git a/src/Tests/Classic/ParagraphsUiTest.php b/src/Tests/Classic/ParagraphsUiTest.php
new file mode 100644
index 0000000..e8ac992
--- /dev/null
+++ b/src/Tests/Classic/ParagraphsUiTest.php
@@ -0,0 +1,65 @@
+<?php
+
+namespace Drupal\paragraphs\Tests\Classic;
+
+use Drupal\field_ui\Tests\FieldUiTestTrait;
+
+/**
+ * Tests the Paragraphs user interface.
+ *
+ * @group paragraphs
+ */
+class ParagraphsUiTest extends ParagraphsTestBase {
+
+  use FieldUiTestTrait;
+
+  /**
+   * Modules to enable.
+   *
+   * @var array
+   */
+  public static $modules = array(
+    'paragraphs_demo',
+  );
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+  }
+
+  /**
+   * Tests displaying an error message a required paragraph field that is empty.
+   */
+  public function testEmptyRequiredField() {
+    $admin_user = $this->drupalCreateUser([
+      'administer node fields',
+      'administer paragraph form display',
+      'administer node form display',
+      'create paragraphed_content_demo content',
+      'edit any paragraphed_content_demo content',
+    ]);
+    $this->drupalLogin($admin_user);
+    // Add required field to paragraphed content type.
+    $field_title = 'Content Test';
+    $this->drupalPostForm('admin/structure/types/manage/paragraphed_content_demo/fields/add-field', [
+      'new_storage_type' => 'field_ui:entity_reference_revisions:paragraph',
+      'label' => $field_title,
+      'field_name' => 'content',
+    ], t('Save and continue'));
+    $this->drupalPostForm(NULL, [], t('Save field settings'));
+    $edit = [
+      'required' => TRUE,
+    ];
+    $this->drupalPostForm(NULL, $edit, 'Save settings');
+    $this->assertText('Saved ' . $field_title . ' configuration.');
+
+    // Create paragraph with empty required field.
+    $title = 'Empty';
+    $this->drupalGet('node/add/paragraphed_content_demo');
+    $this->drupalPostForm(NULL, ['title[0][value]' => $title], t('Save'));
+    $this->assertText($field_title . ' field is required');
+  }
+
+}
diff --git a/src/Tests/Experimental/ParagraphsExperimentalUiTest.php b/src/Tests/Experimental/ParagraphsExperimentalUiTest.php
new file mode 100644
index 0000000..8f4eac2
--- /dev/null
+++ b/src/Tests/Experimental/ParagraphsExperimentalUiTest.php
@@ -0,0 +1,65 @@
+<?php
+
+namespace Drupal\paragraphs\Tests\Experimental;
+
+use Drupal\field_ui\Tests\FieldUiTestTrait;
+
+/**
+ * Tests the Paragraphs user interface.
+ *
+ * @group paragraphs
+ */
+class ParagraphsExperimentalUiTest extends ParagraphsExperimentalTestBase {
+
+  use FieldUiTestTrait;
+
+  /**
+   * Modules to enable.
+   *
+   * @var array
+   */
+  public static $modules = array(
+    'paragraphs_demo',
+  );
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+  }
+
+  /**
+   * Tests displaying an error message a required paragraph field that is empty.
+   */
+  public function testEmptyRequiredField() {
+    $admin_user = $this->drupalCreateUser([
+      'administer node fields',
+      'administer paragraph form display',
+      'administer node form display',
+      'create paragraphed_content_demo content',
+      'edit any paragraphed_content_demo content',
+    ]);
+    $this->drupalLogin($admin_user);
+    // Add required field to paragraphed content type.
+    $field_title = 'Content Test';
+    $this->drupalPostForm('admin/structure/types/manage/paragraphed_content_demo/fields/add-field', [
+      'new_storage_type' => 'field_ui:entity_reference_revisions:paragraph',
+      'label' => $field_title,
+      'field_name' => 'content',
+    ], t('Save and continue'));
+    $this->drupalPostForm(NULL, [], t('Save field settings'));
+    $edit = [
+      'required' => TRUE,
+    ];
+    $this->drupalPostForm(NULL, $edit, 'Save settings');
+    $this->assertText('Saved ' . $field_title . ' configuration.');
+
+    // Create paragraph with empty required field.
+    $title = 'Empty';
+    $this->drupalGet('node/add/paragraphed_content_demo');
+    $this->drupalPostForm(NULL, ['title[0][value]' => $title], t('Save'));
+    $this->assertText($field_title . ' field is required');
+  }
+
+}
