From 679887a98870130084a596b1c5539225b927b5f5 Mon Sep 17 00:00:00 2001 From: Evgeniy Tkachenko Date: Sat, 12 Nov 2016 16:05:30 +0400 Subject: [PATCH] To fix create @webroot (#95) https://github.com/Codeception/Codeception/issues/3706 --- config/test.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/test.php b/config/test.php index a23616e..a92c2fc 100644 --- a/config/test.php +++ b/config/test.php @@ -14,6 +14,9 @@ return [ 'mailer' => [ 'useFileTransport' => true, ], + 'assetManager' => [ + 'basePath' => __DIR__ . '/../web/assets', + ], 'urlManager' => [ 'showScriptName' => true, ],