From edecc4fe8502d9786e8a2eb182d8388e68ed1634 Mon Sep 17 00:00:00 2001 From: Toon Verwerft Date: Mon, 7 Feb 2022 16:03:30 +0100 Subject: [PATCH] Allow grumphp to run in E2E tests --- test/E2E/AbstractE2ETestCase.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/E2E/AbstractE2ETestCase.php b/test/E2E/AbstractE2ETestCase.php index c705b7d1..e7b2dcd9 100644 --- a/test/E2E/AbstractE2ETestCase.php +++ b/test/E2E/AbstractE2ETestCase.php @@ -123,6 +123,11 @@ protected function initializeComposer(string $path): string '' => 'src/', ], ], + 'config' => [ + 'allow-plugins' => [ + 'phpro/grumphp' => true, + ], + ], ]); return $composerFile;