diff --git a/core/modules/system/src/Tests/Installer/InstallerTranslationTest.php b/core/modules/system/src/Tests/Installer/InstallerTranslationTest.php index 5a24f2771455..1ab8e5a0fa4d 100644 --- a/core/modules/system/src/Tests/Installer/InstallerTranslationTest.php +++ b/core/modules/system/src/Tests/Installer/InstallerTranslationTest.php @@ -54,6 +54,12 @@ class InstallerTranslationTest extends InstallerTestBase { // 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(''); + $this->assertRaw('stark/css/layout.css'); } }