function JavaScriptTest::testReset

Tests to see if resetting the JavaScript empties the cache.

File

drupal/core/modules/system/lib/Drupal/system/Tests/Common/JavaScriptTest.php, line 187
Definition of Drupal\system\Tests\Common\JavaScriptTest.

Class

JavaScriptTest
Tests the JavaScript system.

Namespace

Drupal\system\Tests\Common

Code

function testReset() {
  drupal_add_library('system', 'drupal');
  drupal_add_js('core/misc/collapse.js');
  drupal_static_reset('drupal_add_js');
  $this
    ->assertEqual(array(), drupal_add_js(), 'Resetting the JavaScript correctly empties the cache.');
}