diff --git a/core/profiles/standard/config/install/field.field.node.page.body.yml b/core/profiles/standard/config/install/field.field.node.page.body.yml
index 57bb0b0..e6fa8d5 100644
--- a/core/profiles/standard/config/install/field.field.node.page.body.yml
+++ b/core/profiles/standard/config/install/field.field.node.page.body.yml
@@ -17,6 +17,6 @@ translatable: true
 default_value: {  }
 default_value_callback: ''
 settings:
-  display_summary: true
+  display_summary: false
 third_party_settings: {  }
 field_type: text_with_summary
diff --git a/core/profiles/standard/src/Tests/StandardTest.php b/core/profiles/standard/src/Tests/StandardTest.php
index 2171765..f70833b 100644
--- a/core/profiles/standard/src/Tests/StandardTest.php
+++ b/core/profiles/standard/src/Tests/StandardTest.php
@@ -106,6 +106,15 @@ function testStandard() {
     $this->drupalGet('block/add');
     $this->assertFieldByName('body[0][value]');
 
+    // Ensure that the Article content type allows a body summary to be input
+    // and that the Basic page content type does not.
+    $this->drupalGet('node/add/article');
+    $this->assertResponse(200);
+    $this->assertFieldByName('body[0][summary]');
+    $this->drupalGet('node/add/page');
+    $this->assertResponse(200);
+    $this->assertNoFieldByName('body[0][summary]');
+
     // Now we have all configuration imported, test all of them for schema
     // conformance. Ensures all imported default configuration is valid when
     // standard profile modules are enabled.
