From dcdbf23b6d1c0ce058b9939d4d20ba0164719c3e Mon Sep 17 00:00:00 2001 From: Toby Batch Date: Wed, 19 Jun 2019 22:10:06 +0100 Subject: [PATCH] load plugins in test env (#864) --- src/Kernel.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Kernel.php b/src/Kernel.php index c1a6dc0e..3ba8d980 100644 --- a/src/Kernel.php +++ b/src/Kernel.php @@ -83,12 +83,6 @@ class Kernel extends BaseKernel } } - // do not load Kimai plugin in test environment, they may alter the default behaviour and create - // false-negatives in integration/system tests - if ('test' === $this->environment) { - return; - } - $pluginsDir = $this->getProjectDir() . '/var/plugins'; if (!file_exists($pluginsDir)) { return;