From 6db36d5ab605df873f250980d75bc8aa63734d4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 3 Jun 2024 13:23:09 +0200 Subject: [PATCH] Remove ChillEventBundle and refactor framework.yaml configurations This commit involves the deletion of ChillEventBundle from the bundles configuration. Additionally, test framework configurations are handled in a consolidated manner by moving assets configurations (json_manifest_path) from test/framework.yaml to framework.yaml. The obsolete test/framework.yaml has been deleted as it is no longer needed. --- tests/app/config/bundles.php | 2 -- tests/app/config/packages/framework.yaml | 2 ++ tests/app/config/packages/test/framework.yaml | 6 ------ 3 files changed, 2 insertions(+), 8 deletions(-) delete mode 100644 tests/app/config/packages/test/framework.yaml diff --git a/tests/app/config/bundles.php b/tests/app/config/bundles.php index e4520fa51..39549e2f0 100644 --- a/tests/app/config/bundles.php +++ b/tests/app/config/bundles.php @@ -43,6 +43,4 @@ return [ ChampsLibres\WopiBundle\WopiBundle::class => ['all' => true], Chill\WopiBundle\ChillWopiBundle::class => ['all' => true], \Lexik\Bundle\JWTAuthenticationBundle\LexikJWTAuthenticationBundle::class => ['all' => true], - Chill\EventBundle\ChillEventBundle::class => ['all' => true], - ]; diff --git a/tests/app/config/packages/framework.yaml b/tests/app/config/packages/framework.yaml index 011f5760c..a5ec738f2 100644 --- a/tests/app/config/packages/framework.yaml +++ b/tests/app/config/packages/framework.yaml @@ -38,3 +38,5 @@ when@test: test: true session: storage_factory_id: session.storage.factory.mock_file + assets: + json_manifest_path: null diff --git a/tests/app/config/packages/test/framework.yaml b/tests/app/config/packages/test/framework.yaml deleted file mode 100644 index 23906ec36..000000000 --- a/tests/app/config/packages/test/framework.yaml +++ /dev/null @@ -1,6 +0,0 @@ -framework: - test: true - session: - storage_id: session.storage.mock_file - assets: - json_manifest_path: NULL