
| Current Path : /var/www/html/stolberg/web/core/tests/Drupal/FunctionalTests/Asset/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/stolberg/web/core/tests/Drupal/FunctionalTests/Asset/AssetOptimizationTestUmami.php |
<?php
declare(strict_types=1);
namespace Drupal\FunctionalTests\Asset;
/**
* Tests asset aggregation with the Umami install profile.
*
* Umami includes several core modules as well as the Claro theme, this
* results in a more complex asset dependency tree to test than the testing
* profile.
*
* @group asset
* @group #slow
*/
class AssetOptimizationTestUmami extends AssetOptimizationTest {
/**
* {@inheritdoc}
*/
protected $profile = 'demo_umami';
/**
* {@inheritdoc}
*/
protected function requestPage(): void {
$user = $this->createUser([], NULL, TRUE);
$this->drupalLogin($user);
$this->drupalGet('node/add/article');
}
}