From 594ab1aaf6187be3317560e9f3d85eee02ca74f6 Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Mon, 8 Jan 2024 17:29:47 +0000 Subject: [PATCH] Issue #3404108 by quietone, smustgrave: Fix test performance of \Drupal\Tests\help\Functional\HelpTest --- .../help/tests/src/Functional/HelpTest.php | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/core/modules/help/tests/src/Functional/HelpTest.php b/core/modules/help/tests/src/Functional/HelpTest.php index 353d02a8420f..265f5c4ea95f 100644 --- a/core/modules/help/tests/src/Functional/HelpTest.php +++ b/core/modules/help/tests/src/Functional/HelpTest.php @@ -21,19 +21,20 @@ class HelpTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['help_test', 'help_page_test']; + protected static $modules = [ + 'block_content', + 'breakpoint', + 'editor', + 'help', + 'help_page_test', + 'help_test', + 'history', + ]; /** * {@inheritdoc} */ - protected $defaultTheme = 'stark'; - - /** - * Use the Standard profile to test help implementations of many core modules. - * - * @var string - */ - protected $profile = 'standard'; + protected $defaultTheme = 'claro'; /** * The admin user that will be created. -- GitLab