From 7d0275973457bb49bae235084926f11308d202bb Mon Sep 17 00:00:00 2001 From: Matviy Date: Wed, 19 Jul 2017 14:56:26 +0300 Subject: [PATCH] Added 'aliases' section to test config file fix #130 (#131) --- config/test.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/test.php b/config/test.php index 75201e5..e025a9c 100644 --- a/config/test.php +++ b/config/test.php @@ -7,7 +7,11 @@ $db = require(__DIR__ . '/test_db.php'); */ return [ 'id' => 'basic-tests', - 'basePath' => dirname(__DIR__), + 'basePath' => dirname(__DIR__), + 'aliases' => [ + '@bower' => '@vendor/bower-asset', + '@npm' => '@vendor/npm-asset', + ], 'language' => 'en-US', 'components' => [ 'db' => $db,