You are here

js_deprecation_test.module in Drupal 9

Helper module for the JavaScript deprecation tests.

File

core/modules/system/tests/modules/js_deprecation_test/js_deprecation_test.module
View source
<?php

/**
 * @file
 * Helper module for the JavaScript deprecation tests.
 */

/**
 * Implements hook_js_settings_alter().
 */
function js_deprecation_test_js_settings_alter(&$settings) {
  $settings['suppressDeprecationErrors'] = FALSE;
}