function AttachedAssetsTest::testNoCache
Tests that for assets with cache = FALSE, Drupal sets preprocess = FALSE.
File
- 
              core/
tests/ Drupal/ KernelTests/ Core/ Asset/ AttachedAssetsTest.php, line 251  
Class
- AttachedAssetsTest
 - Tests #attached assets: attached asset libraries and JavaScript settings.
 
Namespace
Drupal\KernelTests\Core\AssetCode
public function testNoCache() {
  $build['#attached']['library'][] = 'common_test/no-cache';
  $assets = AttachedAssets::createFromRenderArray($build);
  $js = $this->assetResolver
    ->getJsAssets($assets, FALSE)[1];
  $this->assertFalse($js['core/modules/system/tests/modules/common_test/nocache.js']['preprocess'], 'Setting cache to FALSE sets preprocess to FALSE when adding JavaScript.');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.