You are here

public function OliveroTest::testBaseLibraryAvailable in Drupal 9

Tests that the Olivero theme always adds base library files.

See also

olivero.libraries.yml

File

core/tests/Drupal/FunctionalTests/Theme/OliveroTest.php, line 37

Class

OliveroTest
Tests the Olivero theme.

Namespace

Drupal\FunctionalTests\Theme

Code

public function testBaseLibraryAvailable() {
  $this
    ->drupalGet('');
  $this
    ->assertSession()
    ->statusCodeEquals(200);
  $this
    ->assertSession()
    ->responseContains('olivero/css/base/base.css');
  $this
    ->assertSession()
    ->responseContains('olivero/js/navigation-utils.js');
}