You are here

protected static property WithRedirect::$modules in Metatag 8

Modules to enable.

The test runner will merge the $modules lists from this class, the class it extends, and so on up the class hierarchy. It is not necessary to include modules in your list that a parent class has already declared.

Type: string[]

Overrides MetatagAdminTest::$modules

See also

\Drupal\Tests\BrowserTestBase::installDrupal()

File

tests/src/Functional/WithRedirect.php, line 15

Class

WithRedirect
Tests the Metatag administration when Redirect is installed.

Namespace

Drupal\Tests\metatag\Functional

Code

protected static $modules = [
  'node',
  'field_ui',
  'test_page_test',
  'token',
  'metatag',
  // @see testAvailableConfigEntities
  'block',
  'block_content',
  'comment',
  'contact',
  'menu_link_content',
  'menu_ui',
  'shortcut',
  'taxonomy',
  'entity_test',
  // The whole point of this test.
  'redirect',
];