drupalCreateNode([ 'type' => 'article', 'promote' => NodeInterface::PROMOTED, ]); // Links are displayed by default. $this->drupalGet('node'); $this->assertText($node->getTitle()); $this->assertLink('Read more'); // Hide links. entity_get_display('node', 'article', 'teaser') ->removeComponent('links') ->save(); $this->drupalGet('node'); $this->assertText($node->getTitle()); $this->assertNoLink('Read more'); } }