diff --git a/core/modules/views/src/Tests/NewViewConfigSchemaTest.php b/core/modules/views/src/Tests/NewViewConfigSchemaTest.php
new file mode 100644
index 0000000..aae9970
--- /dev/null
+++ b/core/modules/views/src/Tests/NewViewConfigSchemaTest.php
@@ -0,0 +1,48 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\views\Tests\NewViewConfigSchemaTest.
+ */
+
+namespace Drupal\views\Tests;
+
+/**
+ * Tests configuration schema against new views.
+ *
+ * @group views
+ */
+class NewViewConfigSchemaTest extends ViewTestBase {
+
+  /**
+   * Set to TRUE to strict check all configuration saved.
+   *
+   * @see \Drupal\Core\Config\Testing\ConfigSchemaChecker
+   *
+   * @var bool
+   */
+  protected $strictConfigSchema = TRUE;
+
+  /**
+   * Modules to enable.
+   *
+   * @var array
+   */
+  public static $modules = array('views_ui', 'node');
+
+  /**
+   * Tests creating a brand new view.
+   */
+  public function testNewView() {
+    $this->drupalLogin($this->drupalCreateUser(array('administer views')));
+
+    // Create a new view in the UI.
+    $edit = array();
+    $edit['label'] = $this->randomString();
+    $edit['id'] = strtolower($this->randomMachineName());
+    $edit['show[wizard_key]'] = 'node';
+    $edit['description'] = $this->randomString();
+    $this->drupalPostForm('admin/structure/views/add', $edit, t('Save and edit'));
+  }
+
+}
