$this->
assertSession()->
pageTextContains('Congratulations and welcome to the Drupal community.'
);
$this->
assertSession()->
elementTextContains('css', '#block-olivero-powered', 'Powered by Drupal'
);
} /**
* {@inheritdoc}
*/
protected function setUpSite() { // Test that the correct theme is being used.
$this->
assertSession()->
responseNotContains('olivero'
);
$this->
assertSession()->
responseContains('css/theme/install-page.css'
);
parent::
setUpSite();
} /**
* Ensures that the exported standard configuration is up to date.
*/
public function testStandardConfig() { $skipped_config =
[];
// FunctionalTestSetupTrait::installParameters() uses Drupal as site name
// and simpletest@example.com as mail address.
$skipped_config['system.site'
][] = 'name: Drupal';
$skipped_config['system.site'
][] = 'mail: simpletest@example.com';