Skip to content
Snippets Groups Projects
Commit c08a915d authored by catch's avatar catch
Browse files

Issue #2331991 by Gábor Hojtsy, vijaycs85, dawehner: Tests for Theme missing...

Issue #2331991 by Gábor Hojtsy, vijaycs85, dawehner: Tests for Theme missing when installing in non-English language.
parent 08b92945
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -54,6 +54,12 @@ public function testInstaller() {
// Ensure that we can enable basic_auth on a non-english site.
$this->drupalPostForm('admin/modules', array('modules[Web services][basic_auth][enable]' => TRUE), t('Save configuration'));
$this->assertResponse(200);
// Assert that the theme CSS was added to the page.
$edit = array('preprocess_css' => FALSE);
$this->drupalPostForm('admin/config/development/performance', $edit, t('Save configuration'));
$this->drupalGet('<front>');
$this->assertRaw('stark/css/layout.css');
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment