public function AjaxPageStateTest::testLibrariesAvailable in Drupal 8
Same name and namespace in other branches
- 9 core/modules/system/tests/src/Functional/Render/AjaxPageStateTest.php \Drupal\Tests\system\Functional\Render\AjaxPageStateTest::testLibrariesAvailable()
Default functionality without the param ajax_page_state[libraries].
The libraries html5shiv 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 50
Class
- AjaxPageStateTest
- Performs tests for the effects of the ajax_page_state query parameter.
Namespace
Drupal\Tests\system\Functional\RenderCode
public function testLibrariesAvailable() {
$this
->drupalGet('node', []);
$this
->assertRaw('/core/assets/vendor/html5shiv/html5shiv.min.js', 'The html5shiv library from core should be loaded.');
$this
->assertRaw('/core/misc/drupalSettingsLoader.js', 'The drupalSettings library from core should be loaded.');
}