You are here

protected static property InstalledConfigurationTest::$ignoreCoreConfigs in Thunder 8.3

Same name and namespace in other branches
  1. 8.5 tests/src/Functional/InstalledConfigurationTest.php \Drupal\Tests\thunder\Functional\InstalledConfigurationTest::ignoreCoreConfigs
  2. 8.2 tests/src/Functional/InstalledConfigurationTest.php \Drupal\Tests\thunder\Functional\InstalledConfigurationTest::ignoreCoreConfigs
  3. 8.4 tests/src/Functional/InstalledConfigurationTest.php \Drupal\Tests\thunder\Functional\InstalledConfigurationTest::ignoreCoreConfigs
  4. 6.2.x tests/src/Functional/InstalledConfigurationTest.php \Drupal\Tests\thunder\Functional\InstalledConfigurationTest::ignoreCoreConfigs
  5. 6.0.x tests/src/Functional/InstalledConfigurationTest.php \Drupal\Tests\thunder\Functional\InstalledConfigurationTest::ignoreCoreConfigs
  6. 6.1.x tests/src/Functional/InstalledConfigurationTest.php \Drupal\Tests\thunder\Functional\InstalledConfigurationTest::ignoreCoreConfigs

Ignore list of Core related configurations.

Type: array

File

tests/src/Functional/InstalledConfigurationTest.php, line 63

Class

InstalledConfigurationTest
Test for checking of configuration after install of thunder profile.

Namespace

Drupal\Tests\thunder\Functional

Code

protected static $ignoreCoreConfigs = [
  'checklistapi.progress.update_helper_checklist',
  'system.site',
  'core.extension',
  'system.performance',
  'system.theme',
  // Configs created by User module.
  'system.action.user_add_role_action.administrator',
  'system.action.user_add_role_action.editor',
  'system.action.user_add_role_action.restricted_editor',
  'system.action.user_add_role_action.seo',
  'system.action.user_remove_role_action.administrator',
  'system.action.user_remove_role_action.editor',
  'system.action.user_remove_role_action.restricted_editor',
  'system.action.user_remove_role_action.seo',
  'system.action.user_add_role_action.harbourmaster',
  'system.action.user_remove_role_action.harbourmaster',
  // Configs created by Token module.
  'core.entity_view_mode.access_token.token',
  'core.entity_view_mode.block.token',
  'core.entity_view_mode.content_moderation_state.token',
  'core.entity_view_mode.crop.token',
  'core.entity_view_mode.file.token',
  'core.entity_view_mode.menu_link_content.token',
  'core.entity_view_mode.node.token',
  'core.entity_view_mode.paragraph.token',
  'core.entity_view_mode.taxonomy_term.token',
  'core.entity_view_mode.user.token',
];