By chx on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
8.x
Issue links:
Description:
WebTestBase has a new method installParameters() which returns the arguments for install_drupal. To test the non-interactive installer, override this method in a test like:
protected function installParameters() {
$this->siteName = $this->randomName();
$parameters = parent::installParameters();
$parameters['forms']['install_configure_form']['site_name'] = $this->siteName;
return $parameters;
}