From c0436343e0305430a2cfc8ff70781c0356f3dc70 Mon Sep 17 00:00:00 2001 From: mikolaj Date: Tue, 7 Jul 2026 08:39:20 +0200 Subject: [PATCH] Fixed test kernel bundle registration --- tests/integration/Kernel.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration/Kernel.php b/tests/integration/Kernel.php index c42fbc0..780e937 100644 --- a/tests/integration/Kernel.php +++ b/tests/integration/Kernel.php @@ -25,6 +25,7 @@ use Symfony\Component\Config\Loader\LoaderInterface; use Symfony\Component\Config\Resource\FileResource; use Symfony\Component\DependencyInjection\ContainerBuilder; +use Symfony\UX\TwigComponent\TwigComponentBundle; use Symfony\WebpackEncoreBundle\WebpackEncoreBundle; final class Kernel extends IbexaTestKernel @@ -46,6 +47,7 @@ public function registerBundles(): iterable yield new IbexaAdminUiBundle(); yield new IbexaNotificationsBundle(); yield new IbexaGraphQLBundle(); + yield new TwigComponentBundle(); yield new IbexaTwigComponentsBundle(); yield new IbexaFieldTypeMatrixBundle();