diff --git a/core/modules/field/tests/modules/field_timestamp_test/config/install/field.field.entity_test.entity_test.timestamp.yml b/core/modules/field/tests/modules/field_timestamp_test/config/install/field.field.entity_test.entity_test.timestamp.yml
new file mode 100644
index 0000000000..f646f77523
--- /dev/null
+++ b/core/modules/field/tests/modules/field_timestamp_test/config/install/field.field.entity_test.entity_test.timestamp.yml
@@ -0,0 +1,19 @@
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.entity_test.timestamp
+id: entity_test.entity_test.timestamp
+field_name: timestamp
+entity_type: entity_test
+bundle: entity_test
+label: 'Time stamp'
+description: ''
+required: false
+translatable: false
+default_value:
+  -
+    value: 1514847537
+default_value_callback: ''
+settings: {  }
+field_type: timestamp
diff --git a/core/modules/field/tests/modules/field_timestamp_test/config/install/field.storage.entity_test.timestamp.yml b/core/modules/field/tests/modules/field_timestamp_test/config/install/field.storage.entity_test.timestamp.yml
new file mode 100644
index 0000000000..6534f934d2
--- /dev/null
+++ b/core/modules/field/tests/modules/field_timestamp_test/config/install/field.storage.entity_test.timestamp.yml
@@ -0,0 +1,17 @@
+langcode: en
+status: true
+dependencies:
+  module:
+    - entity_test
+id: node.timestamp
+field_name: timestamp
+entity_type: entity_test
+type: timestamp
+settings: {  }
+module: core
+locked: false
+cardinality: 1
+translatable: true
+indexes: {  }
+persist_with_no_fields: false
+custom_storage: false
diff --git a/core/modules/field/tests/modules/field_timestamp_test/field_timestamp_test.info.yml b/core/modules/field/tests/modules/field_timestamp_test/field_timestamp_test.info.yml
new file mode 100644
index 0000000000..dbabfc2c9d
--- /dev/null
+++ b/core/modules/field/tests/modules/field_timestamp_test/field_timestamp_test.info.yml
@@ -0,0 +1,9 @@
+name: 'Field Timestamp Test'
+type: module
+description: 'Support module for the Timestamp field item test.'
+core: 8.x
+package: Testing
+version: VERSION
+dependencies:
+  - entity_test
+  - field
diff --git a/core/tests/Drupal/KernelTests/Core/Datetime/TimestampSchemaTest.php b/core/tests/Drupal/KernelTests/Core/Datetime/TimestampSchemaTest.php
new file mode 100644
index 0000000000..5c16627bf6
--- /dev/null
+++ b/core/tests/Drupal/KernelTests/Core/Datetime/TimestampSchemaTest.php
@@ -0,0 +1,28 @@
+<?php
+
+namespace Drupal\KernelTests\Core\Datetime;
+
+use Drupal\KernelTests\KernelTestBase;
+
+/**
+ * Tests timestamp schema.
+ *
+ * @group Common
+ */
+class TimestampSchemaTest extends KernelTestBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $modules = ['entity_test', 'field', 'field_timestamp_test'];
+
+  /**
+   *
+   */
+  public function testTimestampSchema() {
+    $this->installConfig(['field_timestamp_test']);
+    // Make at least an assertion.
+    $this->assertTrue(TRUE);
+  }
+
+}
