You are here

protected property DefaultConfigTest::$toSkip in Drupal 10

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Config/DefaultConfigTest.php \Drupal\KernelTests\Core\Config\DefaultConfigTest::toSkip

Config files to be ignored by this test.

Type: array

File

core/tests/Drupal/KernelTests/Core/Config/DefaultConfigTest.php, line 33

Class

DefaultConfigTest
Tests that default configuration provided by all modules matches schema.

Namespace

Drupal\KernelTests\Core\Config

Code

protected $toSkip = [
  // Skip files provided by the config_schema_test module since that module
  // is explicitly for testing schema.
  'config_schema_test.ignore',
  'config_schema_test.noschema',
  'config_schema_test.plugin_types',
  'config_schema_test.someschema.somemodule.section_one.subsection',
  'config_schema_test.someschema.somemodule.section_two.subsection',
  'config_schema_test.someschema.with_parents',
  'config_schema_test.someschema',
];