We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 165ebdc commit 86cf7cfCopy full SHA for 86cf7cf
src/Drupal/DrupalAutoloader.php
@@ -91,7 +91,9 @@ public function register(Container $container): void
91
92
$this->moduleData = array_merge($this->extensionDiscovery->scan('module'), $profiles);
93
usort($this->moduleData, static function (Extension $a, Extension $b) {
94
- return strpos($a->getName(), '_test') !== false ? 10 : 0;
+ // revert for test.
95
+ return $a->getName() === 'blazy_test' ? 10 : 0;
96
+ // return strpos($a->getName(), '_test') !== false ? 10 : 0;
97
});
98
$this->themeData = $this->extensionDiscovery->scan('theme');
99
$this->addTestNamespaces();
0 commit comments