LocaleLibraryAlterTest.php in Drupal 8
File
core/modules/locale/tests/src/Kernel/LocaleLibraryAlterTest.php
View source
<?php
namespace Drupal\Tests\locale\Kernel;
use Drupal\Core\Asset\AttachedAssets;
use Drupal\KernelTests\KernelTestBase;
class LocaleLibraryAlterTest extends KernelTestBase {
protected static $modules = [
'locale',
];
public function testLibraryAlter() {
$this
->installSchema('locale', [
'locales_location',
'locales_source',
]);
$assets = new AttachedAssets();
$assets
->setLibraries([
'core/jquery.ui.datepicker',
]);
$js_assets = $this->container
->get('asset.resolver')
->getJsAssets($assets, FALSE)[1];
$this
->assertArrayHasKey('core/modules/locale/locale.datepicker.js', $js_assets);
}
}