function AjaxPageStateTest::testLibrariesAvailable
Default functionality without the param ajax_page_state[libraries].
The libraries active-link and drupalSettings are loaded default from core and available in code as scripts. Do this as the base test.
File
- 
              core/modules/ system/ tests/ src/ Functional/ Render/ AjaxPageStateTest.php, line 53 
Class
- AjaxPageStateTest
- Performs tests for the effects of the ajax_page_state query parameter.
Namespace
Drupal\Tests\system\Functional\RenderCode
public function testLibrariesAvailable() : void {
  $this->drupalGet('node', []);
  // The active link library from core should be loaded.
  $this->assertSession()
    ->responseContains('/core/misc/active-link.js');
  // The drupalSettings library from core should be loaded.
  $this->assertSession()
    ->responseContains('/core/misc/drupalSettingsLoader.js');
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
